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
654           add_action( 'admin_bar_menu', 'wp_admin_bar_edit_menu', 80 );
655
656           add_action( 'admin_bar_menu', 'wp_admin_bar_add_secondary_groups', 200 );
657
658           /**
659            * Fires after menus are added to the menu bar.
660            *
661            * @since 3.1.0
662            */
663           do_action( 'add_admin_bar_menus' );
664      }
665 }
666