我正在尝试检索自定义帖子类型的公文包中的特定类别。我不知道我必须在查询中输入什么才能获得某些帖子?以下是我目前掌握的情况:
<?php // Create and run custom loop
$custom_posts = new WP_Query();
$custom_posts->query(\'post_type=portfolio&posts_per_page=-1\');
while ($custom_posts->have_posts()) : $custom_posts->the_post();
?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
<?php
wp_reset_postdata();
?>
我已经包括在内了
从数据库中,我试图从term\\u id为4的“portfolio\\u categories”中检索帖子。
我在发布之前进行了搜索,发现this post, 但我还是不明白。非常感谢。