Docs: Standardize references to "meta box" or "meta boxes" as two distinct words throughout core documentation per the core spelling guide.

See #32246.


git-svn-id: https://develop.svn.wordpress.org/trunk@38029 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2016-07-10 00:55:21 +00:00
parent 5cf0ef170a
commit 13ec34335a
7 changed files with 13 additions and 13 deletions

View File

@ -2818,7 +2818,7 @@ function edit_form_image_editor( $post ) {
} }
/** /**
* Displays non-editable attachment metadata in the publish metabox * Displays non-editable attachment metadata in the publish meta box.
* *
* @since 3.5.0 * @since 3.5.0
*/ */

View File

@ -123,7 +123,7 @@ function _wp_ajax_menu_quick_search( $request = array() ) {
} }
/** /**
* Register nav menu metaboxes and advanced menu items * Register nav menu meta boxes and advanced menu items.
* *
* @since 3.0.0 * @since 3.0.0
**/ **/
@ -178,7 +178,7 @@ function wp_initial_nav_menu_meta_boxes() {
} }
/** /**
* Creates metaboxes for any post type menu item. * Creates meta boxes for any post type menu item..
* *
* @since 3.0.0 * @since 3.0.0
*/ */

View File

@ -1166,7 +1166,7 @@ function wp_edit_attachments_query( $q = false ) {
} }
/** /**
* Returns the list of classes to be used by a metabox * Returns the list of classes to be used by a meta box.
* *
* @since 2.5.0 * @since 2.5.0
* *

View File

@ -475,7 +475,7 @@ function register_taxonomy( $taxonomy, $object_type, $args = array() ) {
$wp_taxonomies[ $taxonomy ] = (object) $args; $wp_taxonomies[ $taxonomy ] = (object) $args;
// register callback handling for metabox // Register callback handling for meta box.
add_filter( 'wp_ajax_add-' . $taxonomy, '_wp_ajax_add_hierarchical_term' ); add_filter( 'wp_ajax_add-' . $taxonomy, '_wp_ajax_add_hierarchical_term' );
/** /**