'post', 'posts_per_page' => absint( 3 ), 'ignore_sticky_posts' => true, ); if ( ! empty( array_filter( $actual_news_content_ids ) ) ) { $actual_news_args['post__in'] = array_filter( $actual_news_content_ids ); $actual_news_args['orderby'] = 'post__in'; } else { $actual_news_args['orderby'] = 'date'; } } else { $actual_news_args = array( 'post_type' => 'post', 'posts_per_page' => absint( 3 ), 'ignore_sticky_posts' => true, ); } $actual_news_query = new WP_Query( $actual_news_args ); if ( $actual_news_query->have_posts() ) { $actual_news_section_title = get_theme_mod( 'actual_news_recent_posts_title', __( 'Recent Articles', 'actual-news' ) ); $actual_news_view_all_btn = get_theme_mod( 'actual_news_recent_posts_view_all_button_label', __( 'View All', 'actual-news' ) ); $actual_news_view_all_btn_url = get_theme_mod( 'actual_news_recent_posts_view_all_button_url', '#' ); ?>