Changeset 16061 for trunk/wp-admin/edit-tags.php
- Timestamp:
- 10/28/2010 09:56:43 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-tags.php
r16032 r16061 226 226 <label class="screen-reader-text" for="tag-search-input"><?php echo $tax->labels->search_items; ?>:</label> 227 227 <input type="text" id="tag-search-input" name="s" value="<?php _admin_search_query(); ?>" /> 228 < input type="submit" value="<?php echo esc_attr( $tax->labels->search_items ); ?>" class="button" />228 <?php submit_button( $tax->labels->search_items, 'button', 'submit', false ); ?> 229 229 </p> 230 230 </form> … … 335 335 do_action('add_tag_form_fields', $taxonomy); 336 336 do_action($taxonomy . '_add_form_fields', $taxonomy); 337 ?> 338 <p class="submit"><input type="submit" class="button" name="submit" id="submit" value="<?php echo esc_attr( $tax->labels->add_new_item ); ?>" /></p> 339 <?php 337 338 submit_button( $tax->labels->add_new_item ); 339 340 340 // Back compat hooks. Deprecated in preference to {$taxonomy}_add_form 341 341 if ( 'category' == $taxonomy )
Note: See TracChangeset
for help on using the changeset viewer.