Site icon WP Smith

How to Add Read More Link to Excerpts in your Genesis Child Theme

Here's how to add the Read More... link to the Excerpts for your Genesis Child Themes.

[php]// Add Read More Link to Excerpts
add_filter('excerpt_more', 'get_read_more_link');
add_filter( 'the_content_more_link', 'get_read_more_link' );
function get_read_more_link() {
return '...&nbsp;<a href="' . get_permalink() . '">Read More...</a>';
}[/php]