Skip to content

Instantly share code, notes, and snippets.

@MikeGillihan
Last active December 15, 2015 05:39
Show Gist options
  • Save MikeGillihan/5210785 to your computer and use it in GitHub Desktop.
Save MikeGillihan/5210785 to your computer and use it in GitHub Desktop.
Custom excerpt lengths for Wordpress. USAGE: <?php echo ows_excerpt(55); ?>
function ows_excerpt($num) {
$cont = get_the_content();
$more = '&hellip; <a href="' . get_permalink() . '">Read More</a>';
$excerpt = wp_trim_words( $cont, $num, $more );
return $excerpt;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment