Make WordPress Core


Ignore:
Timestamp:
12/02/2010 03:19:14 AM (14 years ago)
Author:
markjaquith
Message:

The name of the standard post format is now Standard (might offer ability to change Default). fixes #15582

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/meta-boxes.php

    r16678 r16679  
    246246    ?>
    247247    <div id="post-formats-select">
    248         <input type="radio" name="post_format" class="post-format" id="post-format-0" value="0" <?php checked( $post_format, '0' ); ?> /> <label for="post-format-0"><?php _e('Default'); ?></label>
     248        <input type="radio" name="post_format" class="post-format" id="post-format-0" value="0" <?php checked( $post_format, '0' ); ?> /> <label for="post-format-0"><?php _e('Standard'); ?></label>
    249249        <?php foreach ( $post_formats[0] as $format ) : ?>
    250250        <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>
Note: See TracChangeset for help on using the changeset viewer.