Skip to content

Instantly share code, notes, and snippets.

@michaelcarwile
Created January 20, 2014 22:15
Show Gist options
  • Save michaelcarwile/8530362 to your computer and use it in GitHub Desktop.
Save michaelcarwile/8530362 to your computer and use it in GitHub Desktop.
genesis read more link with excerpts
<?php
//* Read more link
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;...<br><a href="' . get_permalink() . '">Continue Reading &rarr;</a>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment