Skip to content

Instantly share code, notes, and snippets.

@frankschrijvers
Last active June 6, 2016 12:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frankschrijvers/0518e04033657bf53e3a4ace7a674cbd to your computer and use it in GitHub Desktop.
Save frankschrijvers/0518e04033657bf53e3a4ace7a674cbd to your computer and use it in GitHub Desktop.
Modify the Genesis read more link
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
//* Modify the Genesis read more link
add_filter( 'excerpt_more', 'wps_read_more_link');
add_filter('get_the_content_more_link', 'wps_read_more_link');
function wps_read_more_link() {
return '... <a class="more-link" href="' . get_permalink() . '">Continue Reading<span class="screen-reader-text">' . get_the_title() . '</span></a>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment