Make WordPress Core

Changeset 38029


Ignore:
Timestamp:
07/10/2016 12:55:21 AM (9 years ago)
Author:
DrewAPicture
Message:

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

See #32246.

Location:
trunk/src
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/edit-form-advanced.php

    r37890 r38029  
    220220    $revisions = wp_get_post_revisions( $post_ID );
    221221
    222     // We should aim to show the revisions metabox only when there are revisions.
     222    // We should aim to show the revisions meta box only when there are revisions.
    223223    if ( count( $revisions ) > 1 ) {
    224224        reset( $revisions ); // Reset pointer for key()
  • trunk/src/wp-admin/includes/deprecated.php

    r37985 r38029  
    11181118
    11191119/**
    1120  * This was once used to display a metabox for the nav menu theme locations.
     1120 * This was once used to display a meta box for the nav menu theme locations.
    11211121 *
    11221122 * Deprecated in favor of a 'Manage Locations' tab added to nav menus management screen.
  • trunk/src/wp-admin/includes/media.php

    r38024 r38029  
    28192819
    28202820/**
    2821  * Displays non-editable attachment metadata in the publish metabox
     2821 * Displays non-editable attachment metadata in the publish meta box.
    28222822 *
    28232823 * @since 3.5.0
  • trunk/src/wp-admin/includes/nav-menu.php

    r37890 r38029  
    124124
    125125/**
    126  * Register nav menu metaboxes and advanced menu items
     126 * Register nav menu meta boxes and advanced menu items.
    127127 *
    128128 * @since 3.0.0
     
    179179
    180180/**
    181  * Creates metaboxes for any post type menu item.
     181 * Creates meta boxes for any post type menu item..
    182182 *
    183183 * @since 3.0.0
     
    213213
    214214/**
    215  * Creates metaboxes for any taxonomy menu item.
     215 * Creates meta boxes for any taxonomy menu item.
    216216 *
    217217 * @since 3.0.0
     
    253253
    254254/**
    255  * Displays a metabox for the custom links menu item.
     255 * Displays a meta box for the custom links menu item.
    256256 *
    257257 * @since 3.0.0
     
    290290
    291291/**
    292  * Displays a metabox for a post type menu item.
     292 * Displays a meta box for a post type menu item.
    293293 *
    294294 * @since 3.0.0
     
    569569
    570570/**
    571  * Displays a metabox for a taxonomy menu item.
     571 * Displays a meta box for a taxonomy menu item.
    572572 *
    573573 * @since 3.0.0
  • trunk/src/wp-admin/includes/post.php

    r38024 r38029  
    11671167
    11681168/**
    1169  * Returns the list of classes to be used by a metabox
     1169 * Returns the list of classes to be used by a meta box.
    11701170 *
    11711171 * @since 2.5.0
  • trunk/src/wp-includes/general-template.php

    r37985 r38029  
    29482948 *
    29492949 * NOTE: Once initialized the TinyMCE editor cannot be safely moved in the DOM. For that reason
    2950  * running wp_editor() inside of a metabox 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.
    29512951 * On the post edit screen several actions can be used to include additional editors
    29522952 * containing TinyMCE: 'edit_page_form', 'edit_form_advanced' and 'dbx_post_sidebar'.
  • trunk/src/wp-includes/taxonomy.php

    r37985 r38029  
    476476    $wp_taxonomies[ $taxonomy ] = (object) $args;
    477477
    478     // register callback handling for metabox
     478    // Register callback handling for meta box.
    479479    add_filter( 'wp_ajax_add-' . $taxonomy, '_wp_ajax_add_hierarchical_term' );
    480480
     
    529529    }
    530530
    531     // Unregister callback handling for metabox.
     531    // Unregister callback handling for meta box.
    532532    remove_filter( 'wp_ajax_add-' . $taxonomy, '_wp_ajax_add_hierarchical_term' );
    533533
Note: See TracChangeset for help on using the changeset viewer.