Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created August 12, 2014 21:38
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 billerickson/f09f4caf6af43dae79d1 to your computer and use it in GitHub Desktop.
Save billerickson/f09f4caf6af43dae79d1 to your computer and use it in GitHub Desktop.
<?php
/**
* Add Read More to Excerpts
*
*/
function be_read_more_on_excerpts( $more ) {
return ' <a href="' . get_permalink() . '">Read More</a>';
}
add_filter( 'excerpt_more', 'be_read_more_on_excerpts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment