
简单有效的WordPress调试及故障排查小技巧
remove_post_type_support ( $post_type, $feature )
从文章类型中删除对某项功能的支持。
function remove_post_type_support( $post_type, $feature ) { global $_wp_post_type_features; unset( $_wp_post_type_features[ $post_type ][ $feature ] ); }