Add the following code to your WordPress theme’s function.php file, or a functionality plugin to modify the Genesis content limit read more link
/** Modify the Genesis content limit read more link */
add_filter( 'get_the_content_more_link', 'custom_read_more_link' );
function custom_read_more_link() {
return '… <a class="more-link" href="' . get_permalink() . '" rel="nofollow">[More...]</a>';
}
Share Your Two Cents