尝试按所选类别选择自定义帖子
$args = array('post_type' => 'speakers', 'posts_per_page' => 10,
//'category_name' => 'saturday',// <- solution A
// 'tax_query' => array(
// array(
// 'taxonomy' => 'category',
// 'field' => 'tag_ID',
// 'terms' => array(2),
// ),
// ),//<- solution B
// 'cat' => 2,//<- solution C
'tag__in' => array( 2 ) //<- solution D
// 'tax_query' => array(
// array(
// 'taxonomy' => 'category',
// 'field' => 'tag_ID', //can be set to ID
// 'terms' => '2' //if field is ID you can reference by cat/term number
// )
// )//<- solution E
);
我只为帖子类型添加了2个类别,但不仅选择了所有自定义帖子,而且还选择了类别为ID <2的帖子
所有5个解决方案都不起作用,我还通过保存和重新保存来刷新永久链接
答案 0 :(得分:0)
试试这个,
<?php
$args = array('post_type' => 'speakers', 'posts_per_page' => 10,
'tax_query' => array(
array(
'taxonomy' => 'custom_taxonomy',
'field' => 'slug',
'terms' => 'saturday',
),
),
); ?>
尝试更改帖子类型&#39;发布者的自定义分类,&#39;类别&#39;是WP帖子的slug名称。