Last active
November 16, 2016 22:34
-
-
Save Deaner666/c585c178032b0859bceb to your computer and use it in GitHub Desktop.
Add customised 'read more' links to hand crafted excerpts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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 = ' <a href="' . get_permalink() . '">[Continue 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