'post__in', 'post_type' => 'jetpack-testimonial', 'ignore_sticky_posts' => 1 // ignore sticky posts ); $post_list = array();// list of valid post/page ids $no_of_post = 0; // for number of posts for ( $i = 1; $i <= $number; $i++ ) { $post_id = get_theme_mod( 'cleanportfolio_testimonial_cpt_' . $i ); if ( $post_id && '' !== $post_id ) { // Polylang Support. if ( class_exists( 'Polylang' ) ) { $post_id = pll_get_post( $post_id, pll_current_language() ); } $post_list = array_merge( $post_list, array( $post_id ) ); $no_of_post++; } } $args['post__in'] = $post_list; if ( 0 === $no_of_post ) { return; } $args['posts_per_page'] = $no_of_post; $loop = new WP_Query( $args ); if ( $loop -> have_posts() ) : while ( $loop -> have_posts() ) : $loop -> the_post(); get_template_part( 'template-parts/testimonial/content', 'testimonial' ); endwhile; wp_reset_postdata(); endif;