<section class="sec2 sectionpadd">
<div class="row sect">
<h2>Looking for more information?</h2>
<div class="section-title-bottom-line"></div>
<br>
<!-- Set up your HTML -->
</div>
<div class="row">
<div class="grrid">
<?php
$query = new WP_Query( array( 'post_type' => 'post' ) );
if ( $query->have_posts() ) : ?>
<div id="carousel03" class="owl-carousel owl-theme">
<?php while ( $query->have_posts() ) : $query->the_post(); ?>
<div class="cas-block">
<div class="boxpadd">
<p class="postdate"><?php the_time('F j, Y') ?></p>
<h3 class="pname"><?php the_title(); ?></h3>
<?php
// Final Codes
$content = get_the_content();
$trimmed_content = wp_trim_words( $content, 25, '...' );
echo '<p>'.$trimmed_content.'</p>';
?>
<a href="<?php the_permalink(); ?>">Read more</a>
</div>
<div class="clear"></div>
</div>
<?php endwhile; wp_reset_postdata(); ?>
</div> <!-- owl -->
<!-- show pagination here -->
<?php else : ?>
<!-- show 404 error here -->
<?php endif; ?>
</div>
</div>
</section>