Changeset 1624 for sites/trunk/global.wordpress.org/public_html/wp-content/themes/rosetta/single.php
- Timestamp:
- 05/25/2015 10:30:18 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/global.wordpress.org/public_html/wp-content/themes/rosetta/single.php
r1615 r1624 14 14 15 15 <div class="storycontent"> 16 <?php the_content( 'Read on for more »', 'rosetta'); ?>16 <?php the_content(); ?> 17 17 </div> 18 18 19 <?php comments_template(); ?> 20 <?php endwhile; 19 <?php 20 // Previous/next post navigation. 21 the_post_navigation( array( 22 'next_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Next', 'rosetta' ) . '</span> ' . 23 '<span class="screen-reader-text">' . __( 'Next post:', 'rosetta' ) . '</span> ' . 24 '<span class="post-title">%title</span>', 25 'prev_text' => '<span class="meta-nav" aria-hidden="true">' . __( 'Previous', 'rosetta' ) . '</span> ' . 26 '<span class="screen-reader-text">' . __( 'Previous post:', 'rosetta' ) . '</span> ' . 27 '<span class="post-title">%title</span>', 28 ) ); 29 30 // If comments are open or we have at least one comment, load up the comment template. 31 if ( comments_open() || get_comments_number() ) { 32 comments_template(); 33 } 34 35 endwhile; 21 36 else: ?> 22 37 <p><?php _e( 'Sorry, no posts matched your criteria.', 'rosetta' ); ?></p>
Note: See TracChangeset
for help on using the changeset viewer.