我对如何实现这一点感到困惑,但我想做的是在主页的循环中加载带有“评论”标签的帖子。
指数php:
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php
get_template_part( \'content-reviews\', get_post_format() );
?>
<?php endwhile; ?>
<?php else : ?>
<?php get_template_part( \'no-results\', \'index\' ); ?>
<?php endif; ?>