WP Query Search Product
-
Hi,
I’m currently using this code to display product according to its sku.
How can I display a smart grouped product? Is it possible to open the product and see product code already selected like this: https://ibb.co/Dt8XDQLBest Regards,
Andrea$args = array( 'posts_per_page' => -1, 'orderby' => 'post_date', 'order' => 'DESC', 'post_status' => 'publish', 'post_type' => array('product', 'product_variation'), 'post_status' => 'publish', 'meta_query' => array( array( 'key' => '_sku', 'value' => $valore, 'compare' => '=' ), ) );
The topic ‘WP Query Search Product’ is closed to new replies.