DIVI 테마 글 편집 에서 DIVI 빌더 사용 안하기

글 등록시에는 Divi Builder 가 불필요한 경우가 있습니다.
이런경우 해당 post_type 은 Divi Builder 가 실행되지 않도록 하기위해서
테마의 functions.php에 아래의 내용을 추가합니다.

[php]

function post_type_remove_et_builder($array){
if( is_admin() ){
foreach ($array as $key => $value) {
if( $value == ‘post’) unset($array[$key]);
}
}
return $array;
}
add_filter(‘et_builder_post_types’,’post_type_remove_et_builder’, 10);

[/php]