Skip to content

Instantly share code, notes, and snippets.

@jmsmrgn
Created September 26, 2014 16:44
Show Gist options
  • Save jmsmrgn/c0588d568b7026e20b78 to your computer and use it in GitHub Desktop.
Save jmsmrgn/c0588d568b7026e20b78 to your computer and use it in GitHub Desktop.
WP - Change excerpt more - only active where excerpt is customized
//* Change excerpt more - only active where excerpt is customized
function manual_excerpt_more( $excerpt ) {
$excerpt_more = '';
if( has_excerpt() ) {
$excerpt_more = '&nbsp;<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