Skip to content

Instantly share code, notes, and snippets.

@Kaiderella
Created March 26, 2017 10:06
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 Kaiderella/e5fcd134933a5edfb61597c8b9438f7b to your computer and use it in GitHub Desktop.
Save Kaiderella/e5fcd134933a5edfb61597c8b9438f7b to your computer and use it in GitHub Desktop.
Mở link bình luận trong tab mới
//*Open comment links in new tab
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