Skip to content

Instantly share code, notes, and snippets.

@jeffcdavis
Last active August 29, 2015 14:03
Show Gist options
  • Save jeffcdavis/57b7361ecbf441fab563 to your computer and use it in GitHub Desktop.
Save jeffcdavis/57b7361ecbf441fab563 to your computer and use it in GitHub Desktop.
Custom WordPress excerpt length and read more link
<?php
function custom_read_more() {
return '&nbsp;<a class="read-more" href="'.get_permalink(get_the_ID()).'">[&#8230;]</a>';
}
function excerpt($limit) {
return wp_trim_words(get_the_excerpt(), $limit, custom_read_more());
}
/*
use excerpt(25) or whatever length you would like
you can also change the read more in the function to fit your needs
*/
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment