Is it possible to show the full recent posts rather than excerpt on homepage in grid layout?
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; ?>