개발자에게 커스터마이징 의뢰하면 가능한지 아닌지 알고 싶습니다.
감사합니다.
안녕하세요~^^
KBoard 플러그인에서 워드프레스 통합검색 기능을 사용하기 위해
게시글 등록 시 워드프레스 Post(글)에도 데이터를 저장하고 있습니다.
KBoard 플러그인에서 댓글 작성 시 워드프레스 Post(글)의 댓글로 등록하시려면
KBoard에서 제공하는 kboard_comments_insert 액션과 wp_new_comment 함수를 사용해보세요.
예제 코드를 만들어봤습니다.
워드프레스 관리자 -> 외모(테마 디자인) -> 테마 편집기 페이지에서 functions.php 파일 하단에
아래의 코드를 추가해보시겠어요?
add_action('kboard_comments_insert', 'my_kboard_comments_insert', 10, 3);
function my_kboard_comments_insert($comment_uid, $content_uid, $board){
$post_id = '1';
$comment = new KBComment();
$comment->initWithUID($comment_uid);
$commentdata = array(
'comment_post_ID' => $post_id,
'comment_author' => $comment->user_display,
'comment_content' => $comment->content,
'comment_type' => '',
'comment_parent' => 0,
'user_id' => $comment->user_uid,
);
wp_new_comment($commentdata);
}
위의 코드에서 $post_id = '1' 부분은 실제 워드프레스 글 id로 적용해보세요.
워드프레스 글 id는
워드프레스 관리자 -> 글 -> 모든 글 -> 해당 글을 선택하시면
주소창에 post.php?post=1&action=edit 이런 식으로 표시됩니다.
post=1 부분이 글 id입니다.
유료 기술 지원 문의는 저희 고객지원 쪽 이메일로 연락 주시면
순차적으로 확인 후 회신드리고 있습니다.
고맙습니다.
감사합니다. 고객지원쪽으로 문의하겠습니다.