WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
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.
Line | Code |
---|---|
100 | require(ABSPATH . 'wp-admin/network/menu.php'); |
101 | elseif ( WP_USER_ADMIN ) |
102 | require(ABSPATH . 'wp-admin/user/menu.php'); |
103 | else |
104 | require(ABSPATH . 'wp-admin/menu.php'); |
105 |
|
106 | if ( current_user_can( 'manage_options' ) ) |
107 | @ini_set( 'memory_limit', apply_filters( 'admin_memory_limit', WP_MAX_MEMORY_LIMIT ) ); |
108 |
|
109 | do_action('admin_init'); |
110 |
|
111 | if ( isset($plugin_page) ) { |
112 | if ( !empty($typenow) ) |
113 | $the_parent = $pagenow . '?post_type=' . $typenow; |
114 | else |
115 | $the_parent = $pagenow; |
116 | if ( ! $page_hook = get_plugin_page_hook($plugin_page, $the_parent) ) { |
117 | $page_hook = get_plugin_page_hook($plugin_page, $plugin_page); |
118 | // backwards compatibility for plugins using add_management_page |