diff --git a/wp-admin/includes/screen.php b/wp-admin/includes/screen.php index 3a0bf88cec..bc16699d1b 100644 --- a/wp-admin/includes/screen.php +++ b/wp-admin/includes/screen.php @@ -682,10 +682,9 @@ final class WP_Screen { // Default help only if there is no old-style block of text and no new-style help tabs. if ( empty( $old_help ) && empty( $this->_help_tabs ) ) { - $default_help = __( 'Documentation' ); - $default_help .= '
'; - $default_help .= __( 'Support Forums' ); - $old_help = '

' . apply_filters( 'default_contextual_help', $default_help ) . '

'; + $default_help = apply_filters( 'default_contextual_help', '' ); + if ( $default_help ) + $old_help = '

' . $default_help . '

'; } if ( $old_help ) { @@ -749,15 +748,21 @@ final class WP_Screen { $this->render_screen_options(); ?> + _help_tabs && ! $this->show_screen_options() ) + return; + ?>