<?php /** * Homemade WP Excerpt * Just like momma useta make */ $content = get_the_content(); $short = mb_substr( $content, 0, strpos( $content, ' ', 350 ) ); echo $short; ?>