Ticket #16047: 16047.diff
File 16047.diff, 1.1 KB (added by , 14 years ago) |
---|
-
wp-admin/includes/template.php
1633 1633 $post_states[] = _x('Pending', 'post state'); 1634 1634 if ( is_sticky($post->ID) ) 1635 1635 $post_states[] = __('Sticky'); 1636 if ( get_post_format( $post->ID ) )1637 $post_states[] = '<span>[</span>' . get_post_format_string( get_post_format( $post->ID ) ) . '<span>]</span>';1638 1636 1639 1637 $post_states = apply_filters( 'display_post_states', $post_states ); 1640 1638 … … 1648 1646 echo "<span class='post-state'>$state$sep</span>"; 1649 1647 } 1650 1648 } 1649 1650 if ( get_post_format( $post->ID ) ) 1651 echo ' - <span class="post-state-format">' . get_post_format_string( get_post_format( $post->ID ) ) . '</span>'; 1651 1652 } 1652 1653 1653 1654 /** -
wp-admin/css/wp-admin.dev.css
1540 1540 padding: 0 0 .2em 1px; 1541 1541 } 1542 1542 1543 span.post-state span{1543 span.post-state-format { 1544 1544 font-weight: normal; 1545 color: #555;1546 1545 } 1547 1546 1548 1547