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 |
---|---|
3572 | <div><?php wp_nonce_field( 'screen-options-nonce', 'screenoptionnonce', false ); ?></div> |
3573 | </form> |
3574 | </div> |
3575 |
|
3576 | <?php |
3577 | endif; |
3578 |
|
3579 | global $title; |
3580 |
|
3581 | $_wp_contextual_help = apply_filters('contextual_help_list', $_wp_contextual_help, $screen); |
3582 | ?> |
3583 | <div id="contextual-help-wrap" class="hidden"> |
3584 | <?php |
3585 | $contextual_help = ''; |
3586 | if ( isset($_wp_contextual_help[$screen]) ) { |
3587 | if ( !empty($title) ) |
3588 | $contextual_help .= '<h5>' . sprintf(__('Get help with “%s”'), $title) . '</h5>'; |
3589 | else |
3590 | $contextual_help .= '<h5>' . __('Get help with this page') . '</h5>'; |