Created
September 26, 2014 16:44
-
-
Save jmsmrgn/c0588d568b7026e20b78 to your computer and use it in GitHub Desktop.
WP - Change excerpt more - only active where excerpt is customized
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
//* Change excerpt more - only active where excerpt is customized | |
function manual_excerpt_more( $excerpt ) { | |
$excerpt_more = ''; | |
if( has_excerpt() ) { | |
$excerpt_more = ' <a href="' . get_permalink() . '" rel="nofollow">[Read more]</a>'; | |
} | |
return $excerpt . $excerpt_more; | |
} | |
add_filter( 'get_the_excerpt', 'manual_excerpt_more' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment