Trim Post Excerpt - 2 options

PHOTO EMBED

Thu Aug 11 2022 23:37:20 GMT+0000 (Coordinated Universal Time)

Saved by @mel #wordpress #php

// Option 1:
<?php echo substr(get_the_excerpt(), 0, 150); ?>

// Option 2: ends with ...
<?php echo wp_trim_words(get_the_excerpt(), 15); ?> 
content_copyCOPY