Changeset 2168956
- Timestamp:
- 10/06/2019 07:31:38 AM (6 years ago)
- Location:
- gn-customize-post-list/trunk
- Files:
-
- 2 edited
-
gn-customize-post-list.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gn-customize-post-list/trunk/gn-customize-post-list.php
r2100806 r2168956 9 9 * Plugin URI: https://github.com/underground0930/gn-customize-post-list 10 10 * Description: You can customize the display items of the article list. 11 * Version: 1.0. 111 * Version: 1.0.2 12 12 * Author: go.nishiduka 13 13 * Author URI: https://htmlgo.site/ … … 264 264 foreach ($current_term as $term) { 265 265 if ($post_type === 'post' && $result_val === 'category') { 266 echo "<a href=' ${admin_url()}edit.php?category_name={$term->slug}'>{$term->name}</a>" . ($term !== end($current_term) ? ', ' : '');266 echo "<a href='/wp-admin/edit.php?category_name={$term->slug}'>{$term->name}</a>" . ($term !== end($current_term) ? ', ' : ''); 267 267 } elseif ($post_type === 'post' && $result_val === 'post_tag') { 268 echo "<a href=' ${admin_url()}edit.php?tag={$term->slug}'>{$term->name}</a>" . ($term !== end($current_term) ? ', ' : '');268 echo "<a href='/wp-admin/edit.php?tag={$term->slug}'>{$term->name}</a>" . ($term !== end($current_term) ? ', ' : ''); 269 269 } else { 270 echo "<a href=' ${admin_url()}edit.php?{$result_val}={$term->slug}&post_type={$post_type}'>{$term->name}</a>" . ($term !== end($current_term) ? ', ' : '');270 echo "<a href='/wp-admin/edit.php?{$result_val}={$term->slug}&post_type={$post_type}'>{$term->name}</a>" . ($term !== end($current_term) ? ', ' : ''); 271 271 } 272 272 } -
gn-customize-post-list/trunk/readme.txt
r2100806 r2168956 3 3 Tags: admin 4 4 Requires at least: 5.0 5 Tested up to: 5.2. 15 Tested up to: 5.2.3 6 6 Requires PHP: 5.6.20 7 Stable tag: 1.0. 17 Stable tag: 1.0.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 66 66 * change 「Requires PHP」 67 67 68 = 1.0.2 = 69 70 *Release Date - 2019/10/6* 71 * Fixed a notice on the management screen. 72 73 68 74 *[JA]* 69 75 … … 77 83 *リリース日 - 2019/6/5* 78 84 * 「Requires PHP」を変更。 85 86 = 1.0.2 = 87 88 *リリース日 - 2019/10/6* 89 * 管理画面でnoticeが出ていたので修正
Note: See TracChangeset
for help on using the changeset viewer.