Search code examples
wordpressposts

Is it possible to show full posts in Grid layout?


Is it possible to show the full recent posts rather than excerpt on homepage in grid layout?


Solution

  • You can always add your html into the below code

    <?php
        $args = array(
            'post_type'   =>'post',
            'posts_per_page' => 4,
            'order'           =>'DESC'
            );
    
         $the_query = new WP_Query($args);
         if ( $the_query->have_posts() ) :
            while ( $the_query->have_posts() ) :
                $the_query->the_post();
          ?>
          <div class="gridlayout">
          <?php the_content(); ?>
          </div>
    
        <?php endwhile; wp_reset_query(); endif; ?>