게시판에 댓글 입력시 메일 알림 코드 관련 문의

/*mail send tools*/
add_action('kboard_document_insert', 'my_reply_email_notify', 10, 2);
function my_reply_email_notify($content_uid, $board_id){
	error_reporting(E_ALL | E_STRICT);
	error_log('===================my_reply_email_notify======================='+$content_uid+' '+$board_id);
	$content = new KBContent();
	$content->initWithUID($content_uid);
	$parent = $content->getTopContent();
		if($content->uid != $parent->uid){
			if($parent->member_uid){
			$user_info = get_userdata($parent->member_uid);
			$notify_email = $user_info->user_email;
			}else if($parent->option->email){
			$notify_email = $parent->option->email;
			}else{
			$notify_email = '';
			}
//get방식처리
		}
}

안녕하세요 일전에 비슷한 질문을 올렸는대..그때는 버전의 차이때문에 해당 오류가 발생하는거 같다고 하셔서 

KBoard 버전

현재 설치된 게시판 플러그인 버전은 5.3.11 입니다.
현재 설치된 댓글 플러그인 버전은 4.4.6 입니다.

으로 버전업을 하였습니다. 워드프레스의 외모 메뉴의 테마 편집기에서 "테마 함수(functions.php)" 에 위의 코드가 삽입되어있습니다.

게시판에서 답글을쓰면 해당 함수가 호출되어 메시지가 찍혀야하는대 일전에는 찍히더니 버전을 올리고 나니 안찍히네요 ㅜㅜ PHP 설정부분에

wp-config.php debug 설정도 켜저있는 상태입니다.

워드프레스 에러 기술지원 서비스 전문가에게 맡기세요
좋은 정보와 인맥을 동시에, 워드프레스 사용자 단톡방 참여하기
워드프레스 에러 기술지원 서비스 전문가에게 맡기세요