?<!-- Start Blog Section -->
? ? ? ? <div class="helloblog">
? ? ? ? <?php
? ? ? ? $next_args = array(
? ? ? ? ? ? 'post_status' => 'publish',
? ? ? ? ? ? 'order'=>'DESC',
? ? ? ? ? ? 'orderby'=>'ID'
? ? ? ? ? ? );
? ? ? ? ?>
? ? ? ? <?php $query = new WP_Query( $next_args); ?>
? ? ? ? <?php if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post(); ?>
? ? ? ? ? ? <div class="col-four">
? ? ? ? ? ? ? ? <div class="blog_post">
? ? ? ? ? ? ? ? <div class="image_container">
? ? ? ? ? ? ? ? ? ? <?php the_post_thumbnail('post-thumbnail', ['class' => 'class="img-responsive"', 'title' => 'Feature image']);?>
? ? ? ? ? ? ? ? ? ? <div class="text-block">
? ? ? ? ? ? ? ? ? ? ? ? ? ? Healthy Lifestyle
? ? ? ? ? ? ? ? ? ? ? ? </div>
? ? ? ? ? ? ? ? </div>
? ? ? ? ? ? ? ? ? ? <div class="post-header">
? ? ? ? ? ? ? ? ? ? <small class="post_time"><?php the_time( 'F jS, Y' ); ?></small>
? ? ? ? ? ? ? ? ? ? ? ? ? ? <h3 class="title">
? ? ? ? ? ? ? ? ? ? ? ? ? ? <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>
? ? ? ? ? ? ? ? ? ? ? ? ? ? </h3>
? ? ? ? ? ? ? ? ? ? ? ? ?</div>
? ? ? ? ? ? ? ? ? ? ? ? ?<div class="excerpt"><?php the_excerpt(); ?></div>
? ? ? ? ? ? ? ? ? ? ? ? ?<p class="goToArticle"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">Read More</a></p>
? ? ? ? ? ? ? ? </div> ? ?
? ? ? ? ? ? </div>
? ? ? ? ? ? <?php endwhile; ??>
? ? ? ? ? ? <?php wp_pagenavi(); ?>
? ? ? ? <?php
? ? ? ? ?>
? ? ? ? ? ? <?php wp_reset_postdata(); else : ?>
? ? ? ? <?php endif; ?>
? ? ? ? ? ? <div class="clear"></div>
? ? ? ? </div>
? ? ? ? <!-- End Blog Section -->