contextual_help
contextual_help
Appears in: wordpress-4.0, wordpress-4.4, wordpress-4.8, wordpress-4.9, wordpress-4.9.4, wordpress-4.9.5, wordpress-4.9.6, wordpress-4.9.7, wordpress-4.9.8, wordpress-5.0, wordpress-5.0.1, wordpress-5.0.2, wordpress-5.0.3, wordpress-5.1, wordpress-5.1.1, wordpress-5.2, wordpress-5.2.1, wordpress-5.2.2, wordpress-5.2.3, wordpress-5.2.4, wordpress-5.3, wordpress-5.3.1, wordpress-5.3.2
Hook Type: filter
Displaying hooks found in version: wordpress-5.3.2apply_filters('contextual_help') is found 1 times:
- /wp-admin/includes/class-wp-screen.php line 793789790791792793794795796797798799
* @param string
$old_help
Help text that appears on the screen.
* @param string
$screen_id
Screen ID.
* @param WP_Screen
$this
Current WP_Screen instance.
*/
$old_help
= apply_filters(
'contextual_help'
,
$old_help
,
$this
->id,
$this
);
// Default help only if there is no old-style block of text and no new-style help tabs.
if
(
empty
(
$old_help
) && !
$this
->get_help_tabs() ) {
/**
* Filters the
default
legacy contextual help text.