single.php循环输出重复

时间:2015-11-03 11:08:28

标签: php wordpress loops posts

我的博文有时会在多个实例中输出。这是随机发生的,但是当它发生时,我唯一的解决方案是删除帖子并重新发布它。

问题可以在这里看到:http://experienceinvest.com/british-student-housing-investment-to-hit-5-75bn/

我的single.php文件:

<?php if ( have_posts() ) { the_post(); rewind_posts(); }  ?>

<?php

if ('investment' == get_post_type()) { include("investment-single.php");}
else { include("news-single.php"); }

?>

1 个答案:

答案 0 :(得分:0)

解决方案:

single.php 单个模板文件的内容,本例中为invstment-single.php&amp; news-single.php需要包含在以下循环中。

<?php if ( have_posts() ) : the_post(); rewind_posts(); ?>

<!--The page content goes here-->

<?php endif; ?>