0
// Start the Query
$v_args = array(
'post_type' => 'listing',
'meta_query' => array(
array(
'key' => 'wpcf-services',
'value' => $services,
'compare' => 'LIKE',
),
),
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'listing-city',
'field' => 'name',
'terms' => $location,
'compare' => 'LIKE',
'operator' => 'IN'
),
array(
'taxonomy' => 'listing-category',
'field' => 'name',
'terms' => $listing_category,
'compare' => 'LIKE',
'operator' => 'IN'
),
),
);
$listingsearch = new WP_Query($v_args);
如果字段爲空,我想在搜索結果中顯示所有文章。如果tax_query
或meta_query
留空,則顯示搜索結果中的所有帖子。顯示所有文章如果字段爲空
我該如何做到這一點?
感謝它爲我工作。 –