워드프레스에서 댓글 작성자의 링크를 새 창에서 열기

워드프레스 정보를 제공하는 블로그 Avada 2017. 11. 28. 23:17 • 댓글:

워드프레스에서 댓글 작성자의 링크를 새 창에서 열도록 하고 싶은 경우에는 다음 코드를 사용할 수 있습니다.

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 );
}

 

 

실제로 테스트해보면 잘 작동합니다.

 

댓글 내의 모든 링크(댓글 작성자 링크 포함)를 새 창 혹은 새 탭에서 열도록 설정하려면 다음 코드를 사용하면 됩니다.

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');

 

위의 코드는 모두 테마 내의 함수 파일에 추가하도록 합니다. (가급적 차일드 테마를 만드시기 바랍니다.)

참고: