Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

search

// WP_Query arguments
$args = array(
	'post_type'              => array( 'product' ),
	's'                      => 'OEM',
	'paged'                  => '1',
	'posts_per_page'         => '12',
);

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