Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

consulta

// WP_Query arguments
$args = array (
	'post_type'              => 'profesionales',
	'post_status'            => 'published',
	'posts_per_page'         => '4',
	'order'                  => 'ASC',
);

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