답변:
다른 필드에서는 WP의 기능을 비활성화 할 수도 있습니다. 주석과 저자의 예 :
add_action( 'admin_init', 'fb_deactivate_support' );
function fb_deactivate_support() {
remove_post_type_support( 'post', 'comments' );
remove_post_type_support( 'post', 'author' );
}
post-string은 post_type에 대한 것이며, 다음을 통해 모든 게시물 유형에 사용할 수도 있습니다.
foreach ( get_post_types() as $post_type ) {
remove_post_type_support( $post_type, 'comments' );
}