Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leducson1/383a161e67785cfc37f13b7cff9d0581 to your computer and use it in GitHub Desktop.
Save leducson1/383a161e67785cfc37f13b7cff9d0581 to your computer and use it in GitHub Desktop.
//* target _blank for comment
function comment_links_in_new_tab($text) {
$return = str_replace('<a', '<a target="_blank"', $text);
return $return;
}
add_filter('get_comment_author_link', 'comment_links_in_new_tab');
add_filter('comment_text', 'comment_links_in_new_tab');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment