Modify the Content 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 WordPress More Tag to break a post on your site:

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
 
//* Modify the WordPress read more link
add_filter( '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