如何遍历自定义分类和子分类并显示帖子?

时间:2017-11-07 作者:Will Beeching

所以我有一个自定义的大陆分类法,它链接到一个自定义的邮局类型。

在大陆类别下,我有:

Europe
-- Germany
----- The Posts
-- United Kingdom
----- The Posts
Asia
-- Australia
----- The Posts
-- New Zealand
----- The Post
理想情况下,我希望HTML看起来像:

<h2>Europe</h2>
<h3>Germany</h3>
<ul>
<li>The post</li>
</ul>
最好的方法是什么?我一直在努力获得子分类法,然后获得帖子。

很抱歉,如果这个问题已经发布,我找不到任何东西,但我可能错了。

提前感谢!

1 个回复
SO网友:wpdd

您可以使用tax\\u query实现此目的。

$the_query = new WP_Query( array(
\'post_type\' => \'offices\',
\'tax_query\' => array(
    array (
        \'taxonomy\' => \'europe\',
        \'field\' => \'slug\',
        \'terms\' => \'germany\',
    )
),
));

您还可以在此查询中使用多个术语。

结束

相关推荐