
적용전

변경후
add_filter( 'admin_comment_types_dropdown', 'custom_my_comment_type', 99 ); function custom_my_comment_type($comment_types){ $comment_types['comment'] = '코맨트'; $comment_types['review'] = '리뷰'; //unset($comment_types['review']); //리뷰 항목 삭제 return $comment_types; }
0개의 댓글