Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

prueba 2

otra prueba

// WP_Query arguments
$args = array(
	'post_type'              => array( 'encuestas' ),
	'nopaging'               => false,
	'paged'                  => '1',
	'posts_per_page'         => '3',
	'posts_per_archive_page' => '3',
	'offset'                 => '1',
	'order'                  => 'ASC',
);

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