我正在尝试从帖子类型中删除支持,但无法使数组正常工作。
我可以让绳子动起来--
remove_post_type_support( \'product\', \'editor\' );
但不是这个数组--
remove_post_type_support( \'product\', array( \'editor\',\'product_cat\' ) );
甚至这个阵列--
remove_post_type_support( \'product\', array( \'editor\' ) );
FULL CODE
add_action( \'init\', \'modify_product_type\' );
function modify_product_type() {
remove_post_type_support( \'product\', array(\'editor\',\'product_cat\'));
}