Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Created October 10, 2013 03:34
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 wpspeak/6912641 to your computer and use it in GitHub Desktop.
Save wpspeak/6912641 to your computer and use it in GitHub Desktop.
Open Comment Author's Link in New Tab
<?php
// Open Comment Author's Link in New Tab
add_filter( "get_comment_author_link", "afn_modifiy_comment_author_anchor" );
function afn_modifiy_comment_author_anchor( $author_link ){
return str_replace( "<a", "<a target='_blank'", $author_link );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment