Skip to content

Instantly share code, notes, and snippets.

@sudipbd
Created November 19, 2016 08:18
Show Gist options
  • Save sudipbd/ccd4540ef689cc33186ef2133b7926b5 to your computer and use it in GitHub Desktop.
Save sudipbd/ccd4540ef689cc33186ef2133b7926b5 to your computer and use it in GitHub Desktop.
WordPress Read More to excerpt
<?php
function wpdocs_excerpt_more( $more ) {
return sprintf( '<a class="read-more" href="%1$s">%2$s</a>',
get_permalink( get_the_ID() ),
__( ' Read More...', 'textdomain' )
);
}
add_filter( 'excerpt_more', 'wpdocs_excerpt_more' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment