I want to display: content limit should be 0 and read more link also appear in Genesis. This is my code:
add_filter ( 'get_the_content_more_link', 'custom_read_more_link' );
function custom_read_more_link() {
return '... <a class="more-link" href="' . get_permalink () . '">Read More</a>';
}
If any one know the answer, please help. Thanks in advance.