Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: add_admin_bar_menus

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
186           add_action( 'admin_bar_menu', 'wp_admin_bar_shortlink_menu', 80 );
187           add_action( 'admin_bar_menu', 'wp_admin_bar_updates_menu', 70 );
188
189           if ( !is_network_admin() && !is_user_admin() ) {
190                add_action( 'admin_bar_menu', 'wp_admin_bar_new_content_menu', 40 );
191                add_action( 'admin_bar_menu', 'wp_admin_bar_comments_menu', 50 );
192                add_action( 'admin_bar_menu', 'wp_admin_bar_appearance_menu', 60 );
193           }
194
195           do_action( 'add_admin_bar_menus' );
196      }
197
198      function remove_node( $id, &$menu ) {
199           if ( isset( $menu->$id ) ) {
200                unset( $menu->$id );
201                return true;
202           }
203
204           foreach( $menu as $menu_item_id => $menu_item ) {