0
可以通過標籤檢索自定義帖子類型的帖子條目,我一直在嘗試使用下面的代碼,但它只是將我鎖定到一個無限循環中。wp_query通過標籤檢索帖子的幫助
<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;?>