'post', 'posts_per_page' => 3, 'ignore_sticky_posts' => true, ); break; case 'category': $cat_id = collarbiz_theme_option( 'recent_content_category', '' ); $args = array( 'post_type' => 'post', 'cat' => $cat_id, 'posts_per_page' => 3, 'ignore_sticky_posts' => true, ); break; default: break; } // Run The Loop. $query = new WP_Query( $args ); if ( $query->have_posts() ) : $i = 0; 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'] = collarbiz_trim_content( 20 ); $page_post['author'] = collarbiz_get_author(); $page_post['image'] = has_post_thumbnail() ? get_the_post_thumbnail_url( get_the_id(), 'post-thumbnail' ) : ''; // Push to the main array. array_push( $content, $page_post ); $i++; endwhile; endif; wp_reset_postdata(); if ( ! empty( $content ) ) $input = $content; return $input; } endif; // recent section content details. add_filter( 'collarbiz_filter_recent_section_details', 'collarbiz_get_recent_section_details' ); if ( ! function_exists( 'collarbiz_render_recent_section' ) ) : /** * Start recent section * * @return string recent content * @since CollarBiz 1.0.0 * */ function collarbiz_render_recent_section( $content_details = array() ) { if ( empty( $content_details ) ) return; $title = collarbiz_theme_option( 'recent_title', '' ); $sub_title = collarbiz_theme_option( 'recent_sub_title', '' ); ?>