Modulo CPT Query
// WP_Query arguments $args = array( 'p' => '$atts[post-id]', 'post_type' => array( 'modulos_cpt' ), 'nopaging' => true, 'posts_per_page' => '1', ); // The Query $modulo_cpt_query = new WP_Query( $args ); // The Loop if ( $modulo_cpt_query->have_posts() ) { while ( $modulo_cpt_query->have_posts() ) { $modulo_cpt_query->the_post(); // do something } } else { // no posts found } // Restore original Post Data wp_reset_postdata();