Skip to content

Instantly share code, notes, and snippets.

@Deaner666
Last active November 16, 2016 22:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Deaner666/c585c178032b0859bceb to your computer and use it in GitHub Desktop.
Save Deaner666/c585c178032b0859bceb to your computer and use it in GitHub Desktop.
Add customised 'read more' links to hand crafted excerpts
<?php
// Add "Read More" link to hand-crafted excerpts
add_filter('get_the_excerpt', 'wpm_manual_excerpt_read_more_link');
function wpm_manual_excerpt_read_more_link($excerpt) {
$excerpt_more = '';
if (has_excerpt() && ! is_attachment() && get_post_type() == 'post') {
$excerpt_more = '&nbsp;<a href="' . get_permalink() . '">[Continue&nbsp;reading] <span class="screen-reader-text">' . get_the_title() . '</span></a>';
}
return $excerpt . $excerpt_more;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment