forked from friendica/friendica-wp-theme
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
421 B
PHTML
7 lines
421 B
PHTML
6 years ago
|
<?php global $wp_query; if ( $wp_query->max_num_pages > 1 ) { ?>
|
||
|
<nav id="nav-below" class="navigation" role="navigation">
|
||
|
<div class="nav-previous"><?php next_posts_link(sprintf( __( '%s older', 'friendica' ), '<span class="meta-nav">←</span>' ) ) ?></div>
|
||
|
<div class="nav-next"><?php previous_posts_link(sprintf( __( 'newer %s', 'friendica' ), '<span class="meta-nav">→</span>' ) ) ?></div>
|
||
|
</nav>
|
||
|
<?php } ?>
|