答案 0 :(得分:0)
删除标题的最佳方法是使用功能remove_post_type_support()。
remove_post_type_support('custom_post_type', 'title');
您可以通过init钩子将其添加到functions.php文件中。
add_action( 'init', 'remove_custom_post_support' );
function remove_custom_post_support() {
remove_post_type_support( 'custom_post_type', 'title' );
}