'post', 'posts_per_page' => 6, 'cat' => absint( $cat_id ), 'ignore_sticky_posts' => true, ); $query = new WP_Query( $args ); if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post(); $page_post['id'] = get_the_id(); $page_post['title'] = get_the_title(); $page_post['url'] = get_the_permalink(); $page_post['excerpt'] = vivid_blog_trim_content( 25 ); $page_post['author'] = vivid_blog_author(); $page_post['image'] = has_post_thumbnail() ? get_the_post_thumbnail_url( get_the_id(), 'post-thumbnail' ) : ''; array_push( $content_details, $page_post ); endwhile; endif; wp_reset_postdata(); blog_foodie_render_gallery_section( $content_details ); } endif; if ( ! function_exists( 'blog_foodie_render_gallery_section' ) ) : function blog_foodie_render_gallery_section( $content_details ) { ?>