<?php
/* Your custom functions go here */
add_filter('kboard_comments_content', 'my_kboard_comments_content', 10, 3);
function my_kboard_comments_content($content, $comment_uid, $content_uid){
$comment = new KBComment();
$comment->initWithUID($comment_uid);
$board = $comment->getBoard();
if(!$board->isAdmin() && $board->id == '2'){ // 실제 게시판 id로 적용해주세요.
$content = '관리자만 볼 수 있습니다.';
}
elseif(!$board->isAdmin() && $board->id == '3'){ // 실제 게시판 id로 적용해주세요.
$content = '관리자만 볼 수 있습니다.';
}
return $content;
}
?>
혹시 관리자만 댓글 보기 필터에서 댓글 작성자는 본인의 댓글을 볼 수 있게 설정할 수 있을까요...?