Skip to content

Instantly share code, notes, and snippets.

@AntoscencoVladimir
Last active January 18, 2016 15:50
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 AntoscencoVladimir/6f6d0da674e61e851ae1 to your computer and use it in GitHub Desktop.
Save AntoscencoVladimir/6f6d0da674e61e851ae1 to your computer and use it in GitHub Desktop.
Delete anchor from "More" tag Wordpress
function no_more_jumping($post) {
return '<a href="'.get_permalink($post->ID).'" class="read-more">'.'Читать далее &raquo;'.'</a>';
}
add_filter('the_content_more_link', 'no_more_jumping');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment