Last active
June 28, 2017 13:23
-
-
Save adekbadek/c97187611dd198942a18647666a57f55 to your computer and use it in GitHub Desktop.
This file contains 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
<!-- remove link from WP excerpt --> | |
<!-- https://stackoverflow.com/a/42202343 --> | |
function new_excerpt_more($more) { | |
global $post; | |
remove_filter('excerpt_more', 'new_excerpt_more'); | |
return ''; | |
} | |
add_filter('excerpt_more','new_excerpt_more', 11); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment