Continue Reading Button Links to Middle of Page Posted in : Read WP jamiewaldenParticipant 6 September 2013 at 00:28 #8507 When I click the “continue reading” button from the homepage to view a single post, it links to the middle of the post. This happens on the Read WP demo site too. Please advise. Mehmet S.Keymaster 16 September 2013 at 23:43 #8738 Hi, it is a WordPress feature. Thanks jamiewaldenParticipant 23 September 2013 at 19:21 #8862 Thanks for nothing. But if you actually want to be helpful next time someone asks this question, you add this filter to the theme functions file. function remove_more_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_more_jump_link’); Mehmet S.Keymaster 24 September 2013 at 02:48 #8893 Thank you! Viewing 4 posts - 1 through 4 (of 4 total) You must be logged in and have valid license to reply to this topic. License required for the following item Read WP - Minimalist WordPress Blog Themeby pixelwars Login and Registration Log in · Register