mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-03 12:12:25 +08:00
https://wordpress.org/support/topic/when-i-search-products-results-showing-like-blog-not-like-products-search/
4 lines
126 B
Text
4 lines
126 B
Text
add_filter( 'relevanssi_modify_wp_query', function( $query ) {
|
|
$query->set( 'post_type', 'product' );
|
|
return $query;
|
|
} );
|