/* Hide products without featured image */ add_action( 'woocommerce_product_query', 'hide_products_without_image' ); function hide_products_without_image( $query ) { $query->set( 'meta_query', array( array( 'key' => '_thumbnail_id', 'value' => '0', 'compare' => '>' ))); } /* ----- */