Skip to content

Instantly share code, notes, and snippets.

@digiltd
Last active August 29, 2015 14:20
Show Gist options
  • Select an option

  • Save digiltd/7de819602e434dc215da to your computer and use it in GitHub Desktop.

Select an option

Save digiltd/7de819602e434dc215da to your computer and use it in GitHub Desktop.
the_excerpt wordpress custom "read more"
<?php
//adds a link to the post
function custom_excerpt_more_link( $more ) {
return ' <a class="read-more" href="' . get_permalink( get_the_ID() ) . '">' . __( 'Read More', 'your-text-domain' ) . '</a>';
}
add_filter( 'excerpt_more', 'custom_excerpt_more_link' );
function custom_excerpt_more( $more ) {
return 'Read More';
}
add_filter( 'excerpt_more', 'custom_excerpt_more' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment