mirror of
https://ghproxy.net/https://github.com/AlxMedia/featureon.git
synced 2025-08-26 14:53:20 +08:00
11 lines
315 B
PHP
11 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-->
|