query avis
// WP_Query arguments $args = array( 'post_type' => array( 'om_avis' ), 'post_status' => array( 'publish' ), 'has_password' => false, 'order' => 'DESC', 'orderby' => 'date', ); // The Query $omavis = new WP_Query( $args ); // The Loop if ( $omavis->have_posts() ) { while ( $omavis->have_posts() ) { $omavis->the_post(); // do something } } else { // no posts found } // Restore original Post Data wp_reset_postdata();