mirror of
https://gh.wpcy.net/https://github.com/AlxMedia/colordive.git
synced 2026-07-16 11:36:39 +08:00
19 lines
450 B
PHP
19 lines
450 B
PHP
<?php $related = colordive_related_posts(); ?>
|
|
|
|
<?php if ( $related->have_posts() ): ?>
|
|
|
|
<h4 class="small-heading">
|
|
<?php esc_html_e('You may also like','colordive'); ?>
|
|
</h4>
|
|
|
|
<div class="related-posts group">
|
|
|
|
<?php while ( $related->have_posts() ) : $related->the_post(); ?>
|
|
<?php get_template_part('content'); ?>
|
|
<?php endwhile; ?>
|
|
<?php wp_reset_postdata(); ?>
|
|
|
|
</div><!--/.related-posts-->
|
|
<?php endif; ?>
|
|
|
|
<?php wp_reset_postdata(); ?>
|