'post', 'posts_per_page' => absint( 6 ), 'ignore_sticky_posts' => true, ); if ( ! empty( array_filter( $content_ids ) ) ) { $args['post__in'] = array_filter( $content_ids ); $args['orderby'] = 'post__in'; } else { $args['orderby'] = 'date'; } } else { $cat_content_id = get_theme_mod( 'ascendoor_coach_gallery_content_category' ); $args = array( 'cat' => $cat_content_id, 'posts_per_page' => absint( 6 ), ); } $args = apply_filters( 'ascendoor_coach_gallery_section_args', $args ); ascendoor_coach_render_gallery_section( $args ); /** * Render Gallery Section. */ function ascendoor_coach_render_gallery_section( $args ) { $section_title = get_theme_mod( 'ascendoor_coach_gallery_title', __( 'Our Gallery', 'ascendoor-coach' ) ); $section_text = get_theme_mod( 'ascendoor_coach_gallery_text' ); $button_label = get_theme_mod( 'ascendoor_coach_gallery_button_label', __( 'View All', 'ascendoor-coach' ) ); $button_link = get_theme_mod( 'ascendoor_coach_gallery_button_link' ); $button_link = ! empty( $button_link ) ? $button_link : '#'; $query = new WP_Query( $args ); if ( $query->have_posts() ) : ?>