/wp-content/themes/news/loop-nav.php
https://bitbucket.org/lgorence/quickpress · PHP · 35 lines · 18 code · 8 blank · 9 comment · 3 complexity · b3efba4298f4c3334114b3d90bf61b28 MD5 · raw file
- <?php
- /**
- * Loop Nav Template
- *
- * This template is used to show your your next/previous post links on singular pages and
- * the next/previous posts links on the home/posts page and archive pages.
- *
- * @package News
- * @subpackage Template
- */
- ?>
- <?php if ( is_singular( 'post' ) ) : ?>
- <div class="loop-nav navigation-links">
- <?php previous_post_link( '%link', '<span class="previous">' . __( '← Previous', 'news' ) . '</span>' ); ?>
- <?php next_post_link( '%link', '<span class="next">' . __( 'Next →', 'news' ) . '</span>' ); ?>
- </div><!-- .navigation-links -->
- <?php elseif ( is_attachment() ) : ?>
- <div class="loop-nav navigation-links">
- <?php previous_image_link( false, '<span class="previous">' . __( '← Previous', 'news' ) . '</span>' ); ?>
- <?php next_image_link( false, '<span class="next">' . __( 'Next →', 'news' ) . '</span>' ); ?>
- </div><!-- .navigation-links -->
- <?php elseif ( !is_singular() && current_theme_supports( 'loop-pagination' ) ) : loop_pagination(); ?>
- <?php elseif ( !is_singular() && $nav = get_posts_nav_link( array( 'sep' => '', 'prelabel' => '<span class="previous">' . __( '← Previous', 'news' ) . '</span>', 'nxtlabel' => '<span class="next">' . __( 'Next →', 'news' ) . '</span>' ) ) ) : ?>
- <div class="loop-nav navigation-links">
- <?php echo $nav; ?>
- </div><!-- .navigation-links -->
- <?php endif; ?>