Skip to content

Instantly share code, notes, and snippets.

@Sanabria
Created February 25, 2019 16:05
Show Gist options
  • Save Sanabria/f748a36ff98bff45954479ee9d0af580 to your computer and use it in GitHub Desktop.
Save Sanabria/f748a36ff98bff45954479ee9d0af580 to your computer and use it in GitHub Desktop.
Custom excerpt
function custom_read_more() {
return '... <a class="read-more" href="'.get_permalink(get_the_ID()).'">more&nbsp;&raquo;</a>';
}
function excerpt($limit) {
return wp_trim_words(get_the_excerpt(), $limit, custom_read_more());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment