dashwall/inc/pagination.php
Alexander Agnarson fe0be23838 Initial commit
2025-03-27 14:38:21 +01:00

10 lines
315 B
PHP

<nav class="pagination group">
<?php if ( function_exists('wp_pagenavi') ): ?>
<?php wp_pagenavi(); ?>
<?php else: ?>
<ul class="group">
<li class="prev left"><?php previous_posts_link(); ?></li>
<li class="next right"><?php next_posts_link(); ?></li>
</ul>
<?php endif; ?>
</nav><!--/.pagination-->