Last active
November 13, 2018 21:22
-
-
Save jimi008/fa4d1c310335cc251c9e237b58a0ea47 to your computer and use it in GitHub Desktop.
Remove comment author url from comments
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
Each theme is different, though something like this would generally not include the comment author’s URL in the comment, by adding this to the end of your theme’s functions.php: | |
<?php | |
//Remove comment author URL | |
add_filter( 'get_comment_author_url', '__return_null' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment