mirror of
https://ghproxy.net/https://github.com/AlxMedia/incolor.git
synced 2025-08-26 14:55:19 +08:00
7 lines
No EOL
449 B
PHP
7 lines
No EOL
449 B
PHP
<?php if ( is_single() ): ?>
|
|
<ul class="post-nav">
|
|
<li class="next"><?php next_post_link('%link', '<i class="fas fa-chevron-right"></i><strong>'.esc_html__('Next', 'incolor').'</strong> <span>%title</span>'); ?></li>
|
|
<li class="previous"><?php previous_post_link('%link', '<i class="fas fa-chevron-left"></i><strong>'.esc_html__('Previous', 'incolor').'</strong> <span>%title</span>'); ?></li>
|
|
<div class="clear"></div>
|
|
</ul>
|
|
<?php endif; ?>
|