blogcards/inc/post-nav.php
Alexander Agnarson 74bf86a6f2 Initial commit
2024-04-14 21:21:20 +02:00

6 lines
No EOL
431 B
PHP

<?php if ( is_single() ): ?>
<ul class="post-nav group">
<li class="next"><?php next_post_link('%link', '<i class="fas fa-chevron-right"></i><strong>'.esc_html__('Next', 'blogcards').'</strong> <span>%title</span>'); ?></li>
<li class="previous"><?php previous_post_link('%link', '<i class="fas fa-chevron-left"></i><strong>'.esc_html__('Previous', 'blogcards').'</strong> <span>%title</span>'); ?></li>
</ul>
<?php endif; ?>