- Timestamp:
- 09/19/2013 05:46:25 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-posts-list-table.php
r24985 r25505 1035 1035 1036 1036 </div> 1037 1038 <?php 1039 1040 if ( $bulk && post_type_supports( $screen->post_type, 'post-formats' ) ) { 1041 $all_post_formats = get_post_format_strings(); 1042 1043 ?> 1044 <label class="alignleft" for="post_format"> 1045 <span class="title"><?php _ex( 'Format', 'post format' ); ?></span> 1046 <select name="post_format"> 1047 <option value="-1"><?php _e( '— No Change —' ); ?></option> 1048 <?php 1049 1050 foreach ( $all_post_formats as $slug => $format ) { 1051 ?> 1052 <option value="<?php echo esc_attr( $slug ); ?>"><?php echo esc_html( $format ); ?></option> 1053 <?php 1054 } 1055 1056 ?> 1057 </select></label> 1058 <?php 1059 1060 } 1061 1062 ?> 1063 1037 1064 </div></fieldset> 1038 1065
Note: See TracChangeset
for help on using the changeset viewer.