How to add WooCommerce SKU to search query?
If you are using wordpress search you can add this code to make it work function search_by_sku( $search, &$query_vars ) { global $wpdb; if(isset($query_vars->query[‘s’]) && !empty($query_vars->query[‘s’])){ $args = array( ‘posts_per_page’ => -1, ‘post_type’ => ‘product’, ‘meta_query’ => array( array( ‘key’ => ‘_sku’, ‘value’ => $query_vars->query[‘s’], ‘compare’ => ‘LIKE’ ) ) ); $posts = get_posts($args); if(empty($posts)) … Read more