Skip to content

Instantly share code, notes, and snippets.

@generatepress
Created August 19, 2015 23:01
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 generatepress/0fa7d2e63899858866a3 to your computer and use it in GitHub Desktop.
Save generatepress/0fa7d2e63899858866a3 to your computer and use it in GitHub Desktop.
Disable the read more jump in GP
add_filter( 'generate_more_jump','generate_disable_more_jump' );
function generate_disable_more_jump()
{
return '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment