Skip to content

Instantly share code, notes, and snippets.

@stebrech
Last active December 26, 2015 17:19
Show Gist options
  • Save stebrech/7186303 to your computer and use it in GitHub Desktop.
Save stebrech/7186303 to your computer and use it in GitHub Desktop.
Custom excerpt read more link
<?php function excerpt_readmore($more) {
return '... <a href="'. get_permalink($post->ID) . '" class="readmore">' . 'Read More' . '</a>';
}
add_filter('excerpt_more', 'excerpt_readmore'); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment