我使用下面的代码来搜索产品,但我只需要按标题或产品标签搜索产品。我怎样才能做到呢?
function search_by_title_or_tags( WP_Query $query ): void{
$search_terms = $query->get( 's' );
if ( $query->is_search() ) {
if ( ! $search_terms ) {
add_action( 'wp', function () use ( $query ) {
$query->set_404();
status_header( 404 );
nocache_headers();
} );
}
$query->set( 'post_type', array( 'post', 'product' ) );
$query->set( 'posts_per_page', SEARCH_GRID_COUNT_ITEMS );
}
}
add_action( 'pre_get_posts', 'search_by_title_or_tags' );
ABOUTYOU