Skip to content

Instantly share code, notes, and snippets.

@baczoni
Created April 24, 2012 16:11
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 baczoni/2481075 to your computer and use it in GitHub Desktop.
Save baczoni/2481075 to your computer and use it in GitHub Desktop.
Wordpress: Remove 'Read more' jump
function wdc_no_more_jumping($post) {
return '<a href="'.get_permalink($post->ID).'" class="read-more">'.'Continue Reading'.'</a>';
}
add_filter('excerpt_more', 'wdc_no_more_jumping');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment