mirror of
https://gh.wpcy.net/https://github.com/AlxMedia/folias.git
synced 2026-07-17 10:16:48 +08:00
19 lines
449 B
PHP
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(); ?>
|