3, 'ignore_sticky_posts' => true, ); $query = new WP_Query( $args ); if ( $query->have_posts() ) { while ( $query->have_posts() ) { $query->the_post(); $img_array = null; if ( has_post_thumbnail() ) { $img_array = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'post-thumbnail' ); } else { $img_array = business_park_dummy_image( 600, 300 ); } if ( isset( $img_array ) ) { $content[$i]['img_array'] = $img_array; } $content[$i]['url'] = get_permalink(); $content[$i]['title'] = get_the_title(); $content[$i]['excerpt'] = get_the_excerpt(); $content[$i]['date'] = get_the_date(); $i++; } wp_reset_postdata(); } if ( ! empty( $content ) ) { $input = $content; } return $input; } endif; // Blog section content details. add_filter( 'business_park_filter_blog_section_details', 'business_park_get_blog_section_details' ); if ( ! function_exists( 'business_park_render_blog_section' ) ) : /** * Start section id .Blog * * @return string Blog content * @since Business Park 1.0.0 * */ function business_park_render_blog_section( $content_details = array() ) { $options = business_park_get_theme_options(); if ( empty( $content_details ) ) { return; } ?>

<?php echo esc_attr( $content['title'] ); ?>