'post__in', 'ignore_sticky_posts' => 1 // ignore sticky posts ); $post_list = array();// list of valid post/page ids $args['post_type'] = 'page'; for ( $i = 1; $i <= $number; $i++ ) { $post_id = ''; $post_id = get_theme_mod( 'catch_mag_header_highlight_page_' . $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 ) ); } } $args['post__in'] = $post_list; $args['posts_per_page'] = $number; $loop = new WP_Query( $args ); if ( $loop -> have_posts() ) : while ( $loop -> have_posts() ) : $loop -> the_post(); $post_class = 'four'; $thumbnail = 'catch-mag-highlight-third'; $thumb = trailingslashit( esc_url( get_template_directory_uri() ) ) . 'assets/images/no-thumb-640x426.jpg'; if ( 1 === ( ( $loop->current_post + 1 ) % 4 ) ) { $post_class = 'one'; $thumbnail = 'catch-mag-highlight-first'; $thumb = trailingslashit( esc_url( get_template_directory_uri() ) ) . 'assets/images/no-thumb-640x853.jpg'; } elseif ( 2 === ( ( $loop->current_post + 1 ) % 4 ) ) { $post_class = 'two'; $thumbnail = 'catch-mag-highlight-second'; $thumb = trailingslashit( esc_url( get_template_directory_uri() ) ) . 'assets/images/no-thumb-640x480.jpg'; } elseif ( 3 === ( ( $loop->current_post + 1 ) % 4 ) ) { $post_class = 'three'; } ?>
>