Changeset 17191 for trunk/wp-admin/includes/template.php
- Timestamp:
- 12/31/2010 04:49:27 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/template.php
r17124 r17191 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 ); … … 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
Note: See TracChangeset
for help on using the changeset viewer.