Archived topic
open new tab comment link
1 reply · Started by Kanta on November 21, 2020
Viewing posts 1–2 of 2
Hello
When click on the commentor name his website directly open on my website. I want to open commentor website in a new tab. Please provide css code for this solution.
Regards
Hi there,
try adding this PHP Snippet:
add_filter( 'get_comment_author_link', 'open_comment_author_link_in_new_window' );
function open_comment_author_link_in_new_window( $author_link ) {
return str_replace( "<a", "<a target='_blank'", $author_link );
}
Adding PHP:
https://docs.generatepress.com/article/adding-php/
This archived topic is closed to new replies.