Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: load-{$page_hook}

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
125      $hook_suffix = $plugin_page;
126 else if ( isset($pagenow) )
127      $hook_suffix = $pagenow;
128
129 set_current_screen();
130
131 // Handle plugin admin pages.
132 if ( isset($plugin_page) ) {
133      if ( $page_hook ) {
134           do_action('load-' . $page_hook);
135           if (! isset($_GET['noheader']))
136                require_once(ABSPATH . 'wp-admin/admin-header.php');
137
138           do_action($page_hook);
139      } else {
140           if ( validate_file($plugin_page) )
141                wp_die(__('Invalid plugin page'));
142
143