'page', 'post__in' => ( array ) $page_ids, 'posts_per_page' => 6, 'orderby' => 'post__in', ); // Run The Loop. $query = new WP_Query( $args ); if ( $query->have_posts() ) : $i = 0; while ( $query->have_posts() ) : $query->the_post(); $page_post['title'] = get_the_title(); $page_post['url'] = get_the_permalink(); $page_post['excerpt'] = collarbiz_trim_content( 15 ); $page_post['icon'] = ! empty( $icons[ $i ] ) ? $icons[ $i ] : 'fa-laptop'; // Push to the main array. array_push( $content, $page_post ); $i++; endwhile; endif; wp_reset_postdata(); if ( ! empty( $content ) ) $input = $content; return $input; } endif; // features section content details. add_filter( 'collarbiz_filter_features_section_details', 'collarbiz_get_features_section_details' ); if ( ! function_exists( 'collarbiz_render_features_section' ) ) : /** * Start features section * * @return string features content * @since CollarBiz 1.0.0 * */ function collarbiz_render_features_section( $content_details = array() ) { if ( empty( $content_details ) ) return; $title = collarbiz_theme_option( 'features_title', '' ); $sub_title = collarbiz_theme_option( 'features_sub_title', '' ); ?>