사이트 납품 시 KBoard를 사용하여 게시판을 제공해줄 때
게시판 글쓰기 화면의 KBoard 미디어 추가 버튼과 에디터 기능 중의 KBoard 미디어 추가 아이콘을 제거하고싶을 때 사용할 수 있다.
다음 코드를 테마의 functions.php 에 추가하면 된다.
/**
* KBoard 미디어 추가 버튼 제거
*/
function remove_kboard_media_button(){
remove_action( 'media_buttons', 'kboard_editor_button' );
remove_filter( 'mce_buttons', 'kboard_register_media_button' );
remove_filter( 'mce_external_plugins', 'kboard_add_media_button' );
}
add_action( 'kboard_skin_header', 'remove_kboard_media_button' );