Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

520

// WP_Query arguments
$args = array(
	'post_type'              => array( 'product' ),
	'order'                  => 'DESC',
	'orderby'                => 'rand',
);

// The Query
$query = new WP_Query( $args );