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