Remove the help prompt text on the Post Format UI. It gets annoying quickly. see #15638

git-svn-id: http://svn.automattic.com/wordpress/trunk@17250 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith 2011-01-11 18:56:23 +00:00
parent adb4f75729
commit 5e71ad01fd
1 changed files with 0 additions and 3 deletions

View File

@ -258,9 +258,6 @@ function post_format_meta_box( $post, $box ) {
<?php foreach ( $post_formats[0] as $format ) : ?>
<br /><input type="radio" name="post_format" class="post-format" id="post-format-<?php echo esc_attr( $format ); ?>" value="<?php echo esc_attr( $format ); ?>" <?php checked( $post_format, $format ); ?> /> <label for="post-format-<?php echo esc_attr( $format ); ?>"><?php echo esc_html( get_post_format_string( $format ) ); ?></label>
<?php endforeach; ?><br />
<?php if ( 'post' == $post->post_type ) : ?>
<p class="howto"><?php _e( 'Need help? Use the Help tab in the upper right of your screen.' ); ?></p>
<?php endif; ?>
</div>
<?php endif; endif;
}