Viewing 1 replies (of 1 total)
  • try this function, worked for me where others did not..

    function themeprefix_excerpt_read_more_link( $output ) {
    	global $post;
    	return $output . ' <a href="' . get_permalink( $post->ID ) . '" class="more-link" title="Read More">Read More</a>';
    }
    add_filter( 'the_excerpt', 'themeprefix_excerpt_read_more_link' );
Viewing 1 replies (of 1 total)
  • The topic ‘how to add "Read More" link at end of expert’ is closed to new replies.