Changeset 21932 for trunk/wp-content/themes/twentytwelve/content-status.php
- Timestamp:
- 09/20/2012 07:42:19 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentytwelve/content-status.php
r21732 r21932 11 11 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 12 12 <div class="entry-content"> 13 <div class="avatar"><?php echo get_avatar( get_the_author_meta( 'ID' ), apply_filters( 'twentytwelve_status_avatar', '48' ) ); ?></div> 13 <div class="avatar"> 14 <header> 15 <h1><?php the_author(); ?></h1> 16 <h2><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a></h2> 17 </header> 18 <?php echo get_avatar( get_the_author_meta( 'ID' ), apply_filters( 'twentytwelve_status_avatar', '48' ) ); ?> 19 </div> 14 20 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentytwelve' ) ); ?> 15 21 </div><!-- .entry-content --> 16 22 17 23 <footer class="entry-meta"> 18 <a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'twentytwelve' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php echo get_the_date(); ?></a>19 24 <?php edit_post_link( __( 'Edit', 'twentytwelve' ), '<span class="edit-link">', '</span>' ); ?> 20 25 </footer><!-- .entry-meta -->
Note: See TracChangeset
for help on using the changeset viewer.