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 |
---|---|
35 | * Filters the capability required when using the Settings API. |
36 | * |
37 | * By default, the options groups for all registered settings require the manage_options capability. |
38 | * This filter is required to change the capability required for a certain options page. |
39 | * |
40 | * @since 3.2.0 |
41 | * |
42 | * @param string $capability The capability used for the page, which is manage_options by default. |
43 | */ |
44 | $capability = apply_filters( "option_page_capability_{$option_page}", $capability ); |
45 | } |
46 |
|
47 | if ( ! current_user_can( $capability ) ) { |
48 | wp_die( |
49 | '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' . |
50 | '<p>' . __( 'Sorry, you are not allowed to manage options for this site.' ) . '</p>', |
51 | 403 |
52 | ); |
53 | } |