| [ Root ] [ Search ] [ Index ] |
PHP Cross Reference of WordPress 3.0Provided by Yoast |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Edit tag form for inclusion in administration panels. 4 * 5 * @package WordPress 6 * @subpackage Administration 7 */ 8 9 // don't load directly 10 if ( !defined('ABSPATH') ) 11 die('-1'); 12 13 if ( empty($tag_ID) ) { ?> 14 <div id="message" class="updated"><p><strong><?php _e( 'You did not select an item for editing.' ); ?></strong></p></div> 15 <?php 16 return; 17 } 18 19 if ( 'category' == $taxonomy ) 20 do_action('edit_category_form_pre', $tag ); 21 else 22 do_action('edit_tag_form_pre', $tag); 23 do_action($taxonomy . '_pre_edit_form', $tag, $taxonomy); ?> 24 25 <div class="wrap"> 26 <?php screen_icon(); ?> 27 <h2><?php echo $tax->labels->edit_item; ?></h2> 28 <div id="ajax-response"></div> 29 <form name="edittag" id="edittag" method="post" action="edit-tags.php" class="validate"> 30 <input type="hidden" name="action" value="editedtag" /> 31 <input type="hidden" name="tag_ID" value="<?php echo esc_attr($tag->term_id) ?>" /> 32 <input type="hidden" name="taxonomy" value="<?php echo esc_attr($taxonomy) ?>" /> 33 <?php wp_original_referer_field(true, 'previous'); wp_nonce_field('update-tag_' . $tag_ID); ?> 34 <table class="form-table"> 35 <tr class="form-field form-required"> 36 <th scope="row" valign="top"><label for="name"><?php _ex('Name', 'Taxonomy Name'); ?></label></th> 37 <td><input name="name" id="name" type="text" value="<?php if ( isset( $tag->name ) ) echo esc_attr($tag->name); ?>" size="40" aria-required="true" /> 38 <p class="description"><?php _e('The name is how it appears on your site.'); ?></p></td> 39 </tr> 40 <?php if ( !global_terms_enabled() ) { ?> 41 <tr class="form-field"> 42 <th scope="row" valign="top"><label for="slug"><?php _ex('Slug', 'Taxonomy Slug'); ?></label></th> 43 <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" /> 44 <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> 45 </tr> 46 <?php } ?> 47 <?php if ( is_taxonomy_hierarchical($taxonomy) ) : ?> 48 <tr class="form-field"> 49 <th scope="row" valign="top"><label for="parent"><?php _ex('Parent', 'Taxonomy Parent'); ?></label></th> 50 <td> 51 <?php wp_dropdown_categories(array('hide_empty' => 0, 'hide_if_empty' => false, 'name' => 'parent', 'orderby' => 'name', 'taxonomy' => $taxonomy, 'selected' => $tag->parent, 'exclude' => $tag->term_id, 'hierarchical' => true, 'show_option_none' => __('None'))); ?><br /> 52 <?php if ( 'category' == $taxonomy ) : ?> 53 <span 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.'); ?></span> 54 <?php endif; ?> 55 </td> 56 </tr> 57 <?php endif; // is_taxonomy_hierarchical() ?> 58 <tr class="form-field"> 59 <th scope="row" valign="top"><label for="description"><?php _ex('Description', 'Taxonomy Description'); ?></label></th> 60 <td><textarea name="description" id="description" rows="5" cols="50" style="width: 97%;"><?php echo esc_html($tag->description); ?></textarea><br /> 61 <span class="description"><?php _e('The description is not prominent by default, however some themes may show it.'); ?></span></td> 62 </tr> 63 <?php 64 if ( 'category' == $taxonomy ) 65 do_action('edit_category_form_fields', $tag); 66 else 67 do_action('edit_tag_form_fields', $tag); 68 do_action($taxonomy . '_edit_form_fields', $tag, $taxonomy); 69 ?> 70 </table> 71 <?php 72 if ( 'category' == $taxonomy ) 73 do_action('edit_category_form', $tag); 74 else 75 do_action('edit_tag_form', $tag); 76 do_action($taxonomy . '_edit_form', $tag, $taxonomy); 77 ?> 78 <p class="submit"><input type="submit" class="button-primary" name="submit" value="<?php echo esc_attr( __( 'Update' ) ); ?>" /></p> 79 </form> 80 </div>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Thu Oct 14 05:11:12 2010 | Cross-referenced by PHPXref 0.7 |