$sku = ($_GET["sku"]) ? $_GET["sku"] : "";
$args = array(
// 'meta_value' => 'blue',
'post_type' => 'product',
"meta_query" => array(
array(
"key" => "_sku",
"value" => $sku,
"compare" => "LIKE"
)
)
);
// The Query
$the_query2 = new WP_Query( $args );
// The Loop
if ( $the_query2->have_posts() ) {
echo '
}
// no search
?>
- ';
while ( $the_query2->have_posts() ) {
$the_query2->the_post();
$product = wc_get_product( get_the_ID() );
echo '
- ' .$product->get_sku() .' '. get_the_title() . ' '; } echo '