在WP_Query中包含分类术语

时间:2015-08-25 17:57:28

标签: php wordpress

我正在使用wp_query的新实例构建搜索页面我正在将字符串传递给s以获取目前是分类术语的部件号。有没有办法在自定义wp_query中包含分类术语?很高兴帮助我们。

1 个答案:

答案 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()