Level up your inbox.

Free resources, top posts, and more!

Reader Interactions

There are 3 comments already... Come join us!

      • ryscript says

        This didn’t work for me either, please update this with

        function remove_jump_link($link) {
        $offset = strpos($link, ‘#more-‘);
        if ($offset) {
        $end = strpos($link, ‘”‘,$offset);
        }

        if ($end) {
        $link = substr_replace($link, ”, $offset, $end-$offset);
        }
        return $link;
        }
        add_filter(‘the_content_more_link’, ‘remove_jump_link’);

        Hope that helps, you may find also wordpress tutorial, tip and trick on my site

Speak your mind...

Your email address will not be published. Required fields are marked *