是的,您可以在获取post查询时添加搜索值,如下所示:
$args = array(
\'post_type\' => \'product\',
\'s\' => \'search value\',
\'meta_query\' => array(
\'relation\' => \'OR\',
array( // Simple products type
\'key\' => \'_sale_price\',
\'value\' => 0,
\'compare\' => \'>\',
\'type\' => \'numeric\'
),
array( // Variable products type
\'key\' => \'_min_variation_sale_price\',
\'value\' => 0,
\'compare\' => \'>\',
\'type\' => \'numeric\'
)
)
);
query_posts( $args );