Skip to content

Instantly share code, notes, and snippets.

@RAStacy
Created January 20, 2016 22:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RAStacy/2073f1f4d5f6bcc4c8df to your computer and use it in GitHub Desktop.
Save RAStacy/2073f1f4d5f6bcc4c8df to your computer and use it in GitHub Desktop.
Read More Excerpt
// Replaces the excerpt "more" text by a link
function new_excerpt_more($more) {
global $post;
return '<span class="ellipse">...</span><a class="moretag" href="'. get_permalink($post->ID) . '">Read the full article...</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment