- Timestamp:
- 09/25/2013 04:49:36 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/content-status.php
r24131 r25625 1 1 <?php 2 2 /** 3 * T he template for displaying posts in the Status Post Format on index and archive pages3 * Template for displaying posts in the Status Post Format 4 4 * 5 * Learn more: http://codex.wordpress.org/Post_Formats 5 * Used on index and archive pages 6 * 7 * @link http://codex.wordpress.org/Post_Formats 6 8 * 7 9 * @package WordPress 8 10 * @subpackage Twenty_Eleven 11 * @since Twenty Eleven 1.0 9 12 */ 10 13 ?> … … 30 33 <?php else : ?> 31 34 <div class="entry-content"> 32 <div class="avatar"><?php echo get_avatar( get_the_author_meta( 'ID' ), apply_filters( 'twentyeleven_status_avatar', '65' ) ); ?></div> 35 <div class="avatar"> 36 <?php 37 /** 38 * Filter the Twenty Eleven status avatar size. 39 * 40 * @since Twenty Eleven 1.0 41 * 42 * @param int The height and width avatar dimensions in pixels. Default 65. 43 */ 44 echo get_avatar( get_the_author_meta( 'ID' ), apply_filters( 'twentyeleven_status_avatar', 65 ) ); 45 ?> 46 </div> 33 47 34 48 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?>
Note: See TracChangeset
for help on using the changeset viewer.