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