可以通过标签检索自定义帖子类型的帖子条目,我一直尝试使用以下代码,但它只是将我锁定为infinte循环。
<aside class="supporting_images">
<?php /*<?php if($post->ID == 241) : echo apply_filters('the_content', '[slideshow=3]'); endif; ?>
<?php the_post_thumbnail(); ?>*/?>
<?php if($post->ID == 241) : ?>
<?php
$query = new WP_Query();
$query->query('tag=branding');
?>
<?php while ($query->have_posts()) : ?>
hello
<?php endwhile; ?>
<?php endif;?>
答案 0 :(得分:0)
首先尝试将循环更改为:
<?php while ($query->have_posts()) : the_post(); ?>
<?php the_title(); ?>
<?php endwhile; ?>
如果有另一个帖子但是没有递增循环计数器,have_posts()
函数只返回true,所以循环永远不会结束。