Skip to content

Instantly share code, notes, and snippets.

@kopepasah
Created November 29, 2012 04:18
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 kopepasah/4166783 to your computer and use it in GitHub Desktop.
Save kopepasah/4166783 to your computer and use it in GitHub Desktop.
Prevent Page Scroll When Clicking the More Link
function remove_more_link_scroll( $link ) {
$link = preg_replace( '|#more-[0-9]+|', '', $link );
return $link;
}
add_filter( 'the_content_more_link', 'remove_more_link_scroll' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment