在不同的字段上,也可以停用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字符串用于post\\u类型,您也可以通过以下方式将其用于所有post类型:
foreach ( get_post_types() as $post_type ) {
remove_post_type_support( $post_type, \'comments\' );
}