'post', 'posts_per_page' => absint( 3 ), 'ignore_sticky_posts' => true, ); if ( ! empty( array_filter( $slider_content_ids ) ) ) { $slider_args['post__in'] = array_filter( $slider_content_ids ); $slider_args['orderby'] = 'post__in'; } else { $slider_args['orderby'] = 'date'; } } else { $cat_content_id = get_theme_mod( 'ascendoor_news_banner_slider_content_category' ); $slider_args = array( 'cat' => $cat_content_id, 'posts_per_page' => absint( 3 ), ); } $slider_args = apply_filters( 'ascendoor_news_banner_section_args', $slider_args ); if ( $editor_content_type === 'post' ) { for ( $i = 1; $i <= 4; $i++ ) { $editor_content_ids[] = get_theme_mod( 'ascendoor_news_editor_pick_content_post_' . $i ); } $editor_args = array( 'post_type' => 'post', 'posts_per_page' => absint( 4 ), 'ignore_sticky_posts' => true, ); if ( ! empty( array_filter( $editor_content_ids ) ) ) { $editor_args['post__in'] = array_filter( $editor_content_ids ); $editor_args['orderby'] = 'post__in'; } else { $editor_args['orderby'] = 'date'; } } else { $cat_content_id = get_theme_mod( 'ascendoor_news_editor_choice_content_category' ); $editor_args = array( 'cat' => $cat_content_id, 'posts_per_page' => absint( 4 ), ); } $editor_args = apply_filters( 'ascendoor_news_banner_section_args', $editor_args ); ascendoor_news_render_banner_section( $slider_args, $editor_args ); /** * Render Banner Section. */ function ascendoor_news_render_banner_section( $slider_args, $editor_args ) { ?>