Created
August 6, 2015 14:55
-
-
Save web-dev-media/6875830c0cf3049047f7 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
<?php | |
function webdev_remove_autor_link_from_comment ( $url ) { | |
if( ! in_the_loop() ) { | |
$url = preg_replace( '/<a href=[\",\'](.*?)[\",\']>(.*?)<\/a>/', "\\2", $url ) ; | |
}; | |
return $url; | |
} | |
add_filter( 'get_comment_author_link', 'webdev_remove_autor_link_from_comment' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment