the_excerpt() VS wp_trim_words()

<?php echo wp_trim_words(get_the_content(), 18) ?> 

<?php the_excerpt(); ?>

<?php echo wp_trim_words(get_the_content(), 18) ?> <?php the_excerpt(); ?>

Scroll to Top