我请求帮助来解决我的问题,我使用选项树框架来显示特定类别的自定义帖子,我有这样的代码:
<?php
global $product;
$category_product1 = ot_get_option( 'homepage-slider-cat1' );
$args = array(
'post_type' => 'product',
'numberposts' => 18,
'post_status' => 'publish',
'category' => $category_product1,
'include_children' => true
);
?>
此特定于邮政编码的类别不会出现。 请帮帮我
答案 0 :(得分:0)
您是否尝试过将Tax_query
作为查询参数?这样您就可以在taxonomies
上查询。
'tax_query' => array(
array(
'taxonomy' => 'people',
'field' => 'slug',
'terms' => 'bob',
),
),
https://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parameters