Continue Reading – change the link Posted in : Read WP b0seParticipant 7 October 2013 at 15:14 #9180 Hi, How can I change the link of the Continue reading text/button? It’s very odd to have the link open down the post (at the ‘more’ separator), rather than at the top. Mehmet S.Keymaster 8 October 2013 at 01:08 #9185 Hi, – Go to Appearance > Editor > functions.php – Add this to the end of the 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' ); Thanks b0seParticipant 8 October 2013 at 01:17 #9186 Thanks buddy, works perfectly. Mehmet S.Keymaster 10 November 2013 at 03:07 #9848 You are welcome! 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