【发布时间】:2021-01-23 16:41:08
【问题描述】:
我正在尝试删除下图中显示的第一个字段,但无法这样做。我已成功删除“产品简短描述”字段,但无法删除 post_content 字段。
我的尝试:
add_action('init', 'remove_content');
function remove_content() {
remove_post_type_support('products', 'editor' );
}
【问题讨论】:
标签: php wordpress custom-post-type