Я хочу искать товары по названию или описанию или по любой таксономии. Я полагаю, что налоговый запрос может помочь мне с условием или условием, но что, если я хочу все с условием ИЛИ.
$string = $_GET['s'];
$args = array(
'post_type' => 'product',
'post_status' => 'publish',
'ignore_sticky_posts' => 1,
'posts_per_page' => '-1',
//'s' => $string,
'meta_query' => array(
'relation' => 'OR',
array(
'key' => 'post_title',
'value' => $string,
'compare' => 'LIKE'
)
),
/* 'tax_query' => array(
'relation' => 'OR',
array(
'taxonomy' => 'product_tag',
'terms' => array($string),
'field' => 'slug',
),
array(
'taxonomy' => 'product_cat',
'terms' => array($string),
'field' => 'slug',
),
array(
'taxonomy' => 'pa_weather',
'field' => 'slug',
'terms' => array($string),
'operator' => 'IN',
)
), */
);
$wp_query = new WP_Query( $args );