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
37  * Fires when link-specific meta boxes are added.
38  *
39  * @since 3.0.0
40  *
41  * @param object $link Link object.
42  */
43 do_action( 'add_meta_boxes_link', $link );
44
45 /** This action is documented in wp-admin/edit-form-advanced.php */
46 do_action( 'do_meta_boxes', 'link', 'normal', $link );
47 /** This action is documented in wp-admin/edit-form-advanced.php */
48 do_action( 'do_meta_boxes', 'link', 'advanced', $link );
49 /** This action is documented in wp-admin/edit-form-advanced.php */
50 do_action( 'do_meta_boxes', 'link', 'side', $link );
51
52 add_screen_option('layout_columns', array('max' => 2, 'default' => 2) );
53
54 get_current_screen()->add_help_tab( array(
55      'id'      => 'overview',
56      'title'   => __('Overview'),
57      'content' =>
58      '<p>' . __( 'You can add or edit links on this screen by entering information in each of the boxes. Only the link&#8217;s web address and name (the text you want to display on your site as the link) are required fields.' ) . '</p>' .
59      '<p>' . __( 'The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you don&#8217;t use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box.' ) . '</p>' .