Skip to content

Instantly share code, notes, and snippets.

@sarvar
Created July 6, 2016 15:13
Show Gist options
  • Save sarvar/dae4397756571167ecd30189cbfaa84e to your computer and use it in GitHub Desktop.
Save sarvar/dae4397756571167ecd30189cbfaa84e to your computer and use it in GitHub Desktop.
How to limit an excerpt in wordpress?
function word_count($string, $limit) {
$words = explode(' ', $string);
return implode(' ', array_slice($words, 0, $limit));
}
*************
<?php echo word_count(get_the_excerpt(), '25'). '...'; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment