Don't display the Help tab reference in Page Attributes meta box if Help tab was removed.

props bananastalktome.
fixes #31164.

git-svn-id: https://develop.svn.wordpress.org/trunk@31303 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2015-01-30 15:33:33 +00:00
parent 9cb4d3c1ce
commit e725b36d1e
1 changed files with 3 additions and 1 deletions

View File

@ -763,8 +763,10 @@ $default_title = apply_filters( 'default_page_template_title', __( 'Default Tem
} ?>
<p><strong><?php _e('Order') ?></strong></p>
<p><label class="screen-reader-text" for="menu_order"><?php _e('Order') ?></label><input name="menu_order" type="text" size="4" id="menu_order" value="<?php echo esc_attr($post->menu_order) ?>" /></p>
<p><?php if ( 'page' == $post->post_type ) _e( 'Need help? Use the Help tab in the upper right of your screen.' ); ?></p>
<?php if ( 'page' == $post->post_type && get_current_screen()->get_help_tabs() ) { ?>
<p><?php _e( 'Need help? Use the Help tab in the upper right of your screen.' ); ?></p>
<?php
}
}
// -- Link related Meta Boxes