Continue Reading – change the link

  • Posted in : Read WP
  • b0se
    Participant

    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

    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

    b0se
    Participant

    Thanks buddy, works perfectly.

    Mehmet S.
    Keymaster

    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
Login and Registration Log in · Register