Make WordPress Core

Ticket #27187: 27187.diff

File 27187.diff, 1.1 KB (added by eightface, 11 years ago)
  • wp-admin/includes/class-wp-posts-list-table.php

     
    10481048        <?php
    10491049
    10501050        if ( $bulk && post_type_supports( $screen->post_type, 'post-formats' ) ) {
    1051                 $all_post_formats = get_post_format_strings();
     1051                $post_formats = get_theme_support( 'post-formats' );
    10521052
    10531053                ?>
    10541054                <label class="alignleft" for="post_format">
    10551055                <span class="title"><?php _ex( 'Format', 'post format' ); ?></span>
    10561056                <select name="post_format">
    10571057                        <option value="-1"><?php _e( '&mdash; No Change &mdash;' ); ?></option>
     1058                        <option value="standard">Standard</option>
    10581059                        <?php
    10591060
    1060                         foreach ( $all_post_formats as $slug => $format ) {
     1061                        foreach ( $post_formats[0] as $format ) {
    10611062                                ?>
    1062                                 <option value="<?php echo esc_attr( $slug ); ?>"><?php echo esc_html( $format ); ?></option>
     1063                                <option value="<?php echo esc_attr( $format ); ?>"><?php echo esc_html( get_post_format_string( $format ) ); ?></option>
    10631064                                <?php
    10641065                        }
    10651066