케이보드 게시판 댓글작성시 사용자에게 SMS보내기

워드프레스Tip
작성자
어**
작성일
2022-08-10 18:39
조회
559
외모 >> 테마 파일 편집기 >> functions.php 파일 하단에 아래의 내용 입력 후 저장

// 케이보드 게시판 댓글작성시 사용자에게 SMS보내기
add_action('kboard_comments_insert', 'my_kboard_comments_insert', 10, 3);
function my_kboard_comments_insert($insert_id, $content_uid, $board){
if($board->id == '1'){ // 실제 게시판 id로 적용해주세요.
$content = new KBContent();
$content->initWithUID($content_uid);

$phone = get_user_meta($content->member_uid, 'phone', true);

if($phone && $content->member_uid != get_current_user_id()){
cosmosfarm_members_sms_send($phone, '댓글이 등록됐습니다.');
}
}
}
전체 0