안녕하세요.
KBoard에 뜨는 워드프레스 아바타 이미지를 클릭하면 새창에서 원본사진이 뜨도록 하고 싶은데 어떤 코드를 넣어야 링크가 먹힐까요?
아래의 코드를
KBoard 스킨의 list.php 또는 document.php 파일에 추가해서 테스트 해보시겠어요?
<a href="<?php echo get_avatar_url($content->member_uid, array('size'=>'999'))?>" target="_blank"><?php echo get_avatar($content->member_uid, 24, '', $content->member_display)?></a>
스킨 파일의 경로는
/wp-content/plugins/kboard/skin/사용중인스킨/ 폴더 입니다.
get_avatar 함수 정보
https://developer.wordpress.org/reference/functions/get_avatar/
get_avatar_url 함수 정보
https://developer.wordpress.org/reference/functions/get_avatar_url/
네, 해결했습니다. 감사합니다.