Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

footer sponsors

// WP_Query arguments
$args = array(
	'post_type'              => array( 'sponsors' ),
	'post_status'            => array( 'publish' ),
	'posts_per_page'         => '5',
);

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