Created
November 19, 2016 08:18
-
-
Save sudipbd/ccd4540ef689cc33186ef2133b7926b5 to your computer and use it in GitHub Desktop.
WordPress Read More to excerpt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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