Add Read More Link to Excerpts in Genesis
Add the following code to your WordPress theme’s function.php file, or a functionality plugin to add a Read More Link to Excerpts in Genesis.
<?php
//Read More Button For Excerpt
function themeprefix_excerpt_read_more_link( $output ) {
global $post;
return $output . ' <a href="' . get_permalink( $post->ID ) . '" class="more-link" title="Read More">Read More</a>';
}
add_filter( 'the_excerpt', 'themeprefix_excerpt_read_more_link' );
Share Your Two Cents