Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: admin_bar_menu

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
72      /**
73       * Load all necessary admin bar items.
74       *
75       * This is the hook used to add, remove, or manipulate admin bar items.
76       *
77       * @since 3.1.0
78       *
79       * @param WP_Admin_Bar $wp_admin_bar WP_Admin_Bar instance, passed by reference
80       */
81      do_action_ref_array( 'admin_bar_menu', array( &$wp_admin_bar ) );
82
83      /**
84       * Fires before the admin bar is rendered.
85       *
86       * @since 3.1.0
87       */
88      do_action( 'wp_before_admin_bar_render' );
89
90      $wp_admin_bar->render();