folias/inc/related-posts.php
Alexander Agnarson e0bfc4820d fix
2021-02-03 14:09:52 +01:00

19 lines
449 B
PHP

<?php $related = folias_related_posts(); ?>
<?php if ( $related->have_posts() ): ?>
<h4 class="heading">
<i class="fas fa-hand-point-right"></i><?php esc_html_e('You may also like...','folias'); ?>
</h4>
<div class="magic-grid">
<?php while ( $related->have_posts() ) : $related->the_post(); ?>
<?php get_template_part('content'); ?>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
</div>
<?php endif; ?>
<?php wp_reset_postdata(); ?>