Xila of Dev biznet
6/7/2019 - 2:13 PM

WP_query

<?php
$args = array('post_type' => 'avis');
$the_query = new WP_Query( $args );

if ( $the_query->have_posts() ) {

	while ( $the_query->have_posts() ) {
		$the_query->the_post();
	}
	/* Restore original Post Data */
	wp_reset_postdata();
} else {
	// no posts found
}
?>