1

我试图弄清楚如何在 wordpress 循环中显示仅包含某些元素的自定义循环。

我的循环当前包含标题、创建日期、作者和内容。

但是,我正在尝试删除循环中每个帖子的内容,因为我不希望它在没有运气的情况下显示在此列表中。我什至已经从循环中删除了 the_content() 并且它仍然在循环部分下显示帖子内容的列表。

任何帮助将不胜感激,

这是我的代码:

<?php query_posts('category_name=halloween &posts_per_page=6'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<!-- IF articles then display them -->

<h6><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h6>   
<small><?php the_time('F jS, Y') ?> by <?php the_author_posts_link() ?></small>

<?php endwhile; else: ?>
<!-- IF no articles were created then show -->

NO Posts Present 

<?php endif; ?>
4

1 回答 1

0

我似乎找到了我的代码中缺少的内容,因为在我的循环结束时需要以下代码片段来解决问题:

这是我在 endif 之后添加的代码

<?php wp_reset_query(); ?>
于 2013-03-03T04:29:21.853 回答