I’m not sure why Genesis even uses the “[…]” for read more. Does anyone know what that means? Anyway, here is the fix.
Add this to functions.php file. The “read-more” class allows you to create a button with CSS.
//* Add read more tag after excerpts function excerpt_read_more_link($output) { global $post; return $output . ' Read More...'; } add_filter('the_excerpt', 'excerpt_read_more_link');
or try this
//* Edit the excerpt read more link text add_filter( 'excerpt_more', 'custom_read_more_link'); function custom_read_more_link() { return '... Read More'; }
If neither of those work, below is the code to modify the read more link when using the Content Limit on the Content Archives section on the Genesis Settings page: (from studiopress.com)
//* 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 '... [Continue Reading]'; }