8 |
8 |
9 // don't load directly |
9 // don't load directly |
10 if ( !defined('ABSPATH') ) |
10 if ( !defined('ABSPATH') ) |
11 die('-1'); |
11 die('-1'); |
12 |
12 |
13 if ( !current_user_can('manage_categories') ) |
|
14 wp_die(__('You do not have sufficient permissions to edit tags for this blog.')); |
|
15 |
|
16 if ( empty($tag_ID) ) { ?> |
13 if ( empty($tag_ID) ) { ?> |
17 <div id="message" class="updated fade"><p><strong><?php _e('A tag was not selected for editing.'); ?></strong></p></div> |
14 <div id="message" class="updated"><p><strong><?php _e( 'You did not select an item for editing.' ); ?></strong></p></div> |
18 <?php |
15 <?php |
19 return; |
16 return; |
20 } |
17 } |
21 |
18 |
22 do_action('edit_tag_form_pre', $tag); ?> |
19 // Back compat hooks |
|
20 if ( 'category' == $taxonomy ) |
|
21 do_action('edit_category_form_pre', $tag ); |
|
22 elseif ( 'link_category' == $taxonomy ) |
|
23 do_action('edit_link_category_form_pre', $tag ); |
|
24 else |
|
25 do_action('edit_tag_form_pre', $tag); |
|
26 |
|
27 do_action($taxonomy . '_pre_edit_form', $tag, $taxonomy); ?> |
23 |
28 |
24 <div class="wrap"> |
29 <div class="wrap"> |
25 <?php screen_icon(); ?> |
30 <?php screen_icon(); ?> |
26 <h2><?php _e('Edit Tag'); ?></h2> |
31 <h2><?php echo $tax->labels->edit_item; ?></h2> |
27 <div id="ajax-response"></div> |
32 <div id="ajax-response"></div> |
28 <form name="edittag" id="edittag" method="post" action="edit-tags.php" class="validate"> |
33 <form name="edittag" id="edittag" method="post" action="edit-tags.php" class="validate"> |
29 <input type="hidden" name="action" value="editedtag" /> |
34 <input type="hidden" name="action" value="editedtag" /> |
30 <input type="hidden" name="tag_ID" value="<?php echo esc_attr($tag->term_id) ?>" /> |
35 <input type="hidden" name="tag_ID" value="<?php echo esc_attr($tag->term_id) ?>" /> |
31 <input type="hidden" name="taxonomy" value="<?php echo esc_attr($taxonomy) ?>" /> |
36 <input type="hidden" name="taxonomy" value="<?php echo esc_attr($taxonomy) ?>" /> |
32 <?php wp_original_referer_field(true, 'previous'); wp_nonce_field('update-tag_' . $tag_ID); ?> |
37 <?php wp_original_referer_field(true, 'previous'); wp_nonce_field('update-tag_' . $tag_ID); ?> |
33 <table class="form-table"> |
38 <table class="form-table"> |
34 <tr class="form-field form-required"> |
39 <tr class="form-field form-required"> |
35 <th scope="row" valign="top"><label for="name"><?php _e('Tag name') ?></label></th> |
40 <th scope="row" valign="top"><label for="name"><?php _ex('Name', 'Taxonomy Name'); ?></label></th> |
36 <td><input name="name" id="name" type="text" value="<?php if ( isset( $tag->name ) ) echo esc_attr($tag->name); ?>" size="40" aria-required="true" /></td> |
41 <td><input name="name" id="name" type="text" value="<?php if ( isset( $tag->name ) ) echo esc_attr($tag->name); ?>" size="40" aria-required="true" /> |
|
42 <p class="description"><?php _e('The name is how it appears on your site.'); ?></p></td> |
37 </tr> |
43 </tr> |
|
44 <?php if ( !global_terms_enabled() ) { ?> |
38 <tr class="form-field"> |
45 <tr class="form-field"> |
39 <th scope="row" valign="top"><label for="slug"><?php _e('Tag slug') ?></label></th> |
46 <th scope="row" valign="top"><label for="slug"><?php _ex('Slug', 'Taxonomy Slug'); ?></label></th> |
40 <td><input name="slug" id="slug" type="text" value="<?php if ( isset( $tag->slug ) ) echo esc_attr(apply_filters('editable_slug', $tag->slug)); ?>" size="40" /> |
47 <td><input name="slug" id="slug" type="text" value="<?php if ( isset( $tag->slug ) ) echo esc_attr(apply_filters('editable_slug', $tag->slug)); ?>" size="40" /> |
41 <p class="description"><?php _e('The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></p></td> |
48 <p class="description"><?php _e('The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></p></td> |
42 </tr> |
49 </tr> |
|
50 <?php } ?> |
|
51 <?php if ( is_taxonomy_hierarchical($taxonomy) ) : ?> |
43 <tr class="form-field"> |
52 <tr class="form-field"> |
44 <th scope="row" valign="top"><label for="description"><?php _e('Description') ?></label></th> |
53 <th scope="row" valign="top"><label for="parent"><?php _ex('Parent', 'Taxonomy Parent'); ?></label></th> |
45 <td><textarea name="description" id="description" rows="5" cols="50" style="width: 97%;"><?php echo esc_html($tag->description); ?></textarea><br /> |
54 <td> |
46 <span class="description"><?php _e('The description is not prominent by default, however some themes may show it.'); ?></span></td> |
55 <?php wp_dropdown_categories(array('hide_empty' => 0, 'hide_if_empty' => false, 'name' => 'parent', 'orderby' => 'name', 'taxonomy' => $taxonomy, 'selected' => $tag->parent, 'exclude_tree' => $tag->term_id, 'hierarchical' => true, 'show_option_none' => __('None'))); ?> |
|
56 <?php if ( 'category' == $taxonomy ) : ?> |
|
57 <p class="description"><?php _e('Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.'); ?></p> |
|
58 <?php endif; ?> |
|
59 </td> |
47 </tr> |
60 </tr> |
48 <?php do_action('edit_tag_form_fields', $tag); ?> |
61 <?php endif; // is_taxonomy_hierarchical() ?> |
|
62 <tr class="form-field"> |
|
63 <th scope="row" valign="top"><label for="description"><?php _ex('Description', 'Taxonomy Description'); ?></label></th> |
|
64 <td><textarea name="description" id="description" rows="5" cols="50" class="large-text"><?php echo $tag->description; // textarea_escaped ?></textarea><br /> |
|
65 <span class="description"><?php _e('The description is not prominent by default, however some themes may show it.'); ?></span></td> |
|
66 </tr> |
|
67 <?php |
|
68 // Back compat hooks |
|
69 if ( 'category' == $taxonomy ) |
|
70 do_action('edit_category_form_fields', $tag); |
|
71 elseif ( 'link_category' == $taxonomy ) |
|
72 do_action('edit_link_category_form_fields', $tag); |
|
73 else |
|
74 do_action('edit_tag_form_fields', $tag); |
|
75 |
|
76 do_action($taxonomy . '_edit_form_fields', $tag, $taxonomy); |
|
77 ?> |
49 </table> |
78 </table> |
50 <p class="submit"><input type="submit" class="button-primary" name="submit" value="<?php esc_attr_e('Update Tag'); ?>" /></p> |
79 <?php |
51 <?php do_action('edit_tag_form', $tag); ?> |
80 // Back compat hooks |
|
81 if ( 'category' == $taxonomy ) |
|
82 do_action('edit_category_form', $tag); |
|
83 elseif ( 'link_category' == $taxonomy ) |
|
84 do_action('edit_link_category_form', $tag); |
|
85 else |
|
86 do_action('edit_tag_form', $tag); |
|
87 |
|
88 do_action($taxonomy . '_edit_form', $tag, $taxonomy); |
|
89 |
|
90 submit_button( __('Update') ); |
|
91 ?> |
52 </form> |
92 </form> |
53 </div> |
93 </div> |