mirror of
https://ghproxy.net/https://github.com/AlxMedia/blogcards.git
synced 2025-08-26 08:41:13 +08:00
10 lines
315 B
PHP
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-->
|