diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index ad57cbcc14..5974013915 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -3516,9 +3516,10 @@ function screen_meta($screen) { } $contextual_help .= '
'; - $contextual_help .= __('Documentation'); - $contextual_help .= '
'; - $contextual_help .= __('Support Forums'); + $default_help = __('Documentation'); + $default_help .= '
'; + $default_help .= __('Support Forums'); + $contextual_help .= apply_filters('default_contextual_help', $default_help); $contextual_help .= "
\n"; echo apply_filters('contextual_help', $contextual_help, $screen); ?>