Skip to content

Instantly share code, notes, and snippets.

@miklb
Created April 30, 2012 18:21
Show Gist options
  • Save miklb/2560749 to your computer and use it in GitHub Desktop.
Save miklb/2560749 to your computer and use it in GitHub Desktop.
Modify WordPress excerpt to create read more link
// change excerpt ellipse to link to full post
function excerpt_ellipse($text) {
return str_replace('[...]', ' … <a href="'.get_permalink().'">Continue reading ' .get_the_title(). '</a>', $text);
return strip_tags($text, '<p>');
}
add_filter('excerpt_more', 'excerpt_ellipse');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment