Skip to content

Instantly share code, notes, and snippets.

@jaredatch
Created March 7, 2014 01:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaredatch/9403619 to your computer and use it in GitHub Desktop.
Save jaredatch/9403619 to your computer and use it in GitHub Desktop.
<?php
/**
* Replace Excerpt Ellipsis
*
* @since 1.0.0
* @param strin $content
* @return string
*/
function ja_remove_except_ellipsis( $content ) {
return str_replace( '[&hellip;]', '<a href="' . get_permalink() . '" class="continue-reading">Continue Reading→</a>', $content );
}
add_filter('the_excerpt', 'ja_remove_except_ellipsis');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment