Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: add_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

Line Code
183
184 if ( ! ( 'pending' == get_post_status( $post ) && ! current_user_can( $post_type_object->cap->publish_posts ) ) )
185      add_meta_box('slugdiv', __('Slug'), 'post_slug_meta_box', null, 'normal', 'core');
186
187 if ( post_type_supports($post_type, 'author') ) {
188      if ( is_super_admin() || current_user_can( $post_type_object->cap->edit_others_posts ) )
189           add_meta_box('authordiv', __('Author'), 'post_author_meta_box', null, 'normal', 'core');
190 }
191
192 do_action('add_meta_boxes', $post_type, $post);
193 do_action('add_meta_boxes_' . $post_type, $post);
194
195 do_action('do_meta_boxes', $post_type, 'normal', $post);
196 do_action('do_meta_boxes', $post_type, 'advanced', $post);
197 do_action('do_meta_boxes', $post_type, 'side', $post);
198
199 add_screen_option('layout_columns', array('max' => 2, 'default' => 2) );
200
201 if ( 'post' == $post_type ) {