Guest User

Untitled

a guest
Nov 21st, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. /**
  2. * Add a rel="nofollow" to the comment reply links
  3. */
  4. function comment_reply_link_nofollow( $link ) {
  5. global $user_ID;
  6. return str_replace( '")\'>', '")\' rel=\'nofollow\'>', $link );
  7. }
  8. add_filter( 'comment_reply_link', 'comment_reply_link_nofollow' );
Add Comment
Please, Sign In to add comment