Modify the Content Limit Read More Link

Unless otherwise indicated, the code snippets you see below should be placed into your theme’s functions.php file.

Here is the code needed to modify the read more link when using the Content Limit on the Content Archives section of the Genesis Settings page:

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
 
//* Modify the Genesis content limit read more link
add_filter( 'get_the_content_more_link', 'sp_read_more_link' );
function sp_read_more_link() {
	return '... <a class="more-link" href="' . get_permalink() . '">[Continue Reading]</a>';
}
What are your feelings