diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index d427389242..8339ced9f0 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -3312,10 +3312,31 @@ function screen_meta($screen) { if ( !isset($_wp_contextual_help) ) $_wp_contextual_help = array(); - if ( !isset($_wp_contextual_help['post']) ) - $_wp_contextual_help['post'] = __('Writing Posts'); + + if ( !isset($_wp_contextual_help['post']) ) { + $help = drag_drop_help(); + $help .= '

' . __('Writing Posts') . '

'; + $_wp_contextual_help['post'] = $help; + } + + if ( !isset($_wp_contextual_help['page']) ) { + $help = drag_drop_help(); + $_wp_contextual_help['page'] = $help; + } + + if ( !isset($_wp_contextual_help['dashboard']) ) { + $help = drag_drop_help(); + $_wp_contextual_help['dashboard'] = $help; + } + + if ( !isset($_wp_contextual_help['link']) ) { + $help = drag_drop_help(); + $_wp_contextual_help['link'] = $help; + } + if ( !isset($_wp_contextual_help['options-general']) ) $_wp_contextual_help['options-general'] = __('General Settings'); + $_wp_contextual_help = apply_filters('contextual_help_list', $_wp_contextual_help, $screen); ?>