我正在创建一个wordpress网站。 在帖子页面上,我有允许PHP的文本小部件,我有一个自定义循环:
<?php $my_query2 = new WP_Query("showposts=1&cat=9,10,11,18,19&orderby=rand"); ?>
<?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
<a href="<?php the_permalink() ?>">
<div class="home-widget-thumb">
<?php
if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
the_post_thumbnail('home-thumb');
}
?>
</div>
<h2><?php the_title(); ?></h2></a>
<div class="body">
<?php echo get_the_excerpt(); ?>
</div><!--body-->
</br>
<span class="more-link">
<a href="<?php the_permalink() ?>">[more]</a>
</span>
<?php endwhile; ?>
<?php else : ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
出于某种原因,你所刊登的博文与我创建的循环中的博文相同。 在这里查看示例: http://counselingandtraining.com/play-therapy/
不修改帖子的循环。
谁能告诉我为什么会这样?
如果我能提供进一步的信息,请告诉我。
提前感谢您的时间。 克里斯
答案 0 :(得分:0)
在我看来,问题在于您仍在使用基本查询。
您可以通过在代码中添加变量$my_query2
来更改此设置:
<?php if ($my_query2->have_posts()) : ?><?php while ($my_query2->have_posts()) : $my_query2->the_post(); ?>
这将使the_title()
,the_content()
等所有功能按预期工作,因为它们将设置为$my_query2
。