我正在使用wp_query
的新实例构建搜索页面我正在将字符串传递给s
以获取目前是分类术语的部件号。有没有办法在自定义wp_query
中包含分类术语?很高兴帮助我们。
答案 0 :(得分:0)
您可以按照以下示例中的分类值来查询帖子:
$query_string = 'francis';
$args = array(
'post_type' => 'post',
'tax_query' => array(
array(
'taxonomy' => 'people', // your taxonomy name
'field' => 'slug',
'terms' => $query_string, // the slug you want to search for - which in your case is passed through the query string
),
),
);
$query = new WP_Query( $args );
要访问查询字符串,请使用get_search_query()
。