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

git-svn-id: https://develop.svn.wordpress.org/trunk@17250 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2011-01-11 18:56:23 +00:00
parent dd4329a4bc
commit d25923ae63
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 ) : ?> <?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> <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 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> </div>
<?php endif; endif; <?php endif; endif;
} }