Changeset 38029
- Timestamp:
- 07/10/2016 12:55:21 AM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-form-advanced.php
r37890 r38029 220 220 $revisions = wp_get_post_revisions( $post_ID ); 221 221 222 // We should aim to show the revisions meta box only when there are revisions.222 // We should aim to show the revisions meta box only when there are revisions. 223 223 if ( count( $revisions ) > 1 ) { 224 224 reset( $revisions ); // Reset pointer for key() -
trunk/src/wp-admin/includes/deprecated.php
r37985 r38029 1118 1118 1119 1119 /** 1120 * This was once used to display a meta box for the nav menu theme locations.1120 * This was once used to display a meta box for the nav menu theme locations. 1121 1121 * 1122 1122 * Deprecated in favor of a 'Manage Locations' tab added to nav menus management screen. -
trunk/src/wp-admin/includes/media.php
r38024 r38029 2819 2819 2820 2820 /** 2821 * Displays non-editable attachment metadata in the publish meta box2821 * Displays non-editable attachment metadata in the publish meta box. 2822 2822 * 2823 2823 * @since 3.5.0 -
trunk/src/wp-admin/includes/nav-menu.php
r37890 r38029 124 124 125 125 /** 126 * Register nav menu meta boxes and advanced menu items126 * Register nav menu meta boxes and advanced menu items. 127 127 * 128 128 * @since 3.0.0 … … 179 179 180 180 /** 181 * Creates meta boxes for any post type menu item.181 * Creates meta boxes for any post type menu item.. 182 182 * 183 183 * @since 3.0.0 … … 213 213 214 214 /** 215 * Creates meta boxes for any taxonomy menu item.215 * Creates meta boxes for any taxonomy menu item. 216 216 * 217 217 * @since 3.0.0 … … 253 253 254 254 /** 255 * Displays a meta box for the custom links menu item.255 * Displays a meta box for the custom links menu item. 256 256 * 257 257 * @since 3.0.0 … … 290 290 291 291 /** 292 * Displays a meta box for a post type menu item.292 * Displays a meta box for a post type menu item. 293 293 * 294 294 * @since 3.0.0 … … 569 569 570 570 /** 571 * Displays a meta box for a taxonomy menu item.571 * Displays a meta box for a taxonomy menu item. 572 572 * 573 573 * @since 3.0.0 -
trunk/src/wp-admin/includes/post.php
r38024 r38029 1167 1167 1168 1168 /** 1169 * Returns the list of classes to be used by a meta box1169 * Returns the list of classes to be used by a meta box. 1170 1170 * 1171 1171 * @since 2.5.0 -
trunk/src/wp-includes/general-template.php
r37985 r38029 2948 2948 * 2949 2949 * NOTE: Once initialized the TinyMCE editor cannot be safely moved in the DOM. For that reason 2950 * running wp_editor() inside of a meta box is not a good idea unless only Quicktags is used.2950 * running wp_editor() inside of a meta box is not a good idea unless only Quicktags is used. 2951 2951 * On the post edit screen several actions can be used to include additional editors 2952 2952 * containing TinyMCE: 'edit_page_form', 'edit_form_advanced' and 'dbx_post_sidebar'. -
trunk/src/wp-includes/taxonomy.php
r37985 r38029 476 476 $wp_taxonomies[ $taxonomy ] = (object) $args; 477 477 478 // register callback handling for metabox478 // Register callback handling for meta box. 479 479 add_filter( 'wp_ajax_add-' . $taxonomy, '_wp_ajax_add_hierarchical_term' ); 480 480 … … 529 529 } 530 530 531 // Unregister callback handling for meta box.531 // Unregister callback handling for meta box. 532 532 remove_filter( 'wp_ajax_add-' . $taxonomy, '_wp_ajax_add_hierarchical_term' ); 533 533
Note: See TracChangeset
for help on using the changeset viewer.