Projects from the same category
// WP_Query arguments $args = array( 'post_type' => array( 'semikola_portfolio' ), 'posts_per_page' => '3', 'order' => 'ASC', ); // The Query $samecat = new WP_Query( $args ); // The Loop if ( $samecat->have_posts() ) { while ( $samecat->have_posts() ) { $samecat->the_post(); // do something } } else { // no posts found } // Restore original Post Data wp_reset_postdata();