我有一个wp_query,可以搜索适用于更多类别的产品。
这是我的代码:
$args = array(
'posts_per_page' => -1,
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'auto',
'field' => 'ID',
'terms' => $auto_id
),
array(
'taxonomy' => 'ricambio',
'field' => 'ID',
'terms' => $ricambi_id
)
),
'post_type' => 'product',
'orderby' => 'title',
);
$query = new WP_Query( $args );
在这种情况下,如何为此查询指定自定义归档模板?
一种存档 - 产品 - term1-term2.php
由于