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 |
|
101 | if ( WP_NETWORK_ADMIN ) |
102 | require(ABSPATH . 'wp-admin/network/menu.php'); |
103 | elseif ( WP_USER_ADMIN ) |
104 | require(ABSPATH . 'wp-admin/user/menu.php'); |
105 | else |
106 | require(ABSPATH . 'wp-admin/menu.php'); |
107 |
|
108 | if ( current_user_can( 'manage_options' ) ) |
109 | @ini_set( 'memory_limit', apply_filters( 'admin_memory_limit', WP_MAX_MEMORY_LIMIT ) ); |
110 |
|
111 | do_action('admin_init'); |
112 |
|
113 | if ( isset($plugin_page) ) { |
114 | if ( !empty($typenow) ) |
115 | $the_parent = $pagenow . '?post_type=' . $typenow; |
116 | else |
117 | $the_parent = $pagenow; |
118 | if ( ! $page_hook = get_plugin_page_hook($plugin_page, $the_parent) ) { |