mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
12 lines
383 B
Text
12 lines
383 B
Text
/**
|
|
* Remove the "nofollow" attribute from all comments author's links
|
|
* except for a specific author.
|
|
*/
|
|
function dofollow_blog_author_comment( $return, $author ) {
|
|
if ( $author === 'Your Name' ) {
|
|
$return = str_replace( "rel='external nofollow ugc'", '', $return );
|
|
}
|
|
|
|
return $return;
|
|
}
|
|
add_filter( 'get_comment_author_link', 'dofollow_blog_author_comment', 10, 2 );
|