Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: do_meta_boxes

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

This hook occurs 3 times in this file.

Line Code
238  *
239  * Fires once for each of the default meta box contexts: normal, advanced, and side.
240  *
241  * @since 3.0.0
242  *
243  * @param string  $post_type Post type of the post.
244  * @param string  $context   string  Meta box context.
245  * @param WP_Post $post      Post object.
246  */
247 do_action( 'do_meta_boxes', $post_type, 'normal', $post );
248 /** This action is documented in wp-admin/edit-form-advanced.php */
249 do_action( 'do_meta_boxes', $post_type, 'advanced', $post );
250 /** This action is documented in wp-admin/edit-form-advanced.php */
251 do_action( 'do_meta_boxes', $post_type, 'side', $post );
252
253 add_screen_option('layout_columns', array('max' => 2, 'default' => 2) );
254
255 if ( 'post' == $post_type ) {
256      $customize_display = '<p>' . __('The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop. You can also minimize or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen.') . '</p>';
257
258      get_current_screen()->add_help_tab( array(
259           'id'      => 'customize-display',
260           'title'   => __('Customizing This Display'),