Welcome, visitor! Log in
 

Source View: adminmenu

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.

  • Action hooks look like this: do_action( "hook_name" )
  • Filter hooks look like this: apply_filters( "hook_name", "what_to_filter" ).

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
174
175 <div id="adminmenuback"></div>
176 <div id="adminmenuwrap">
177 <div id="adminmenushadow"></div>
178 <ul id="adminmenu" role="navigation">
179
180 <?php
181
182 _wp_menu_output( $menu, $submenu );
183 do_action( 'adminmenu' );
184
185 ?>
186 </ul>
187 </div>
188