我有一个代码来运行一个循环来获取特定类别的三个帖子。现在,当我运行此代码时,它可以正常工作,但是另一个循环无法正常工作。被破坏的循环是一个简单地获取single.php 内容的循环。
换句话说,下面的代码(用于特定于类别的循环)只会导致 single.php 页面中的另一个脚本失败。但它适用于所有其他页面。这个问题的原因是什么?非常感谢
query_posts('in_category=پیشنهاد&posts_per_page=3');
if( have_posts() ) : while(have_posts() ) : the_post(); ?>
<li>
<a href="<?php the_permalink(); ?>">
<div class='entry-suggested-title'>
<p><?php the_title();?></p>
</div>
<div class='entry-suggested-image'>
<?php
the_post_thumbnail(array(182,182), array('alt'=>get_the_title()));
the_title();
?>
</div>
</a>
</li>
<?php
endwhile;
endif;
?>
</ul>