我需要帮助用 Woocommerce 搜索替换默认的 Wordpress 搜索。
在functions.php中试过这个
add_filter( 'pre_get_posts', 'custom_pre_get_posts' );
function custom_pre_get_posts( $query ) {
if ( is_search() ) {
$query->set('post_type', 'product');
}
return $query;
}
但搜索的输出仍然只是一个类似帖子的搜索结果列表。我想要与 Woocommerce 搜索输出相同的输出(产品存档)。
那可能吗?