我试图显示一个只有特定元素的自定义循环。
“我的循环”当前包含标题、创建日期、作者和;所容纳之物
然而,我正在尝试删除循环中每个帖子的内容,因为我不希望它在这个列表中显示得不走运。
我甚至已经从循环中删除了\\u 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() ?>"><?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; ?>