在上一个问题中,我询问如何在“管理”部分的“帖子”页面中添加一列,并获得了有效的答案。但是,现在我需要知道如何删除现有的列(例如Date列),以便我自定义的Date列替换它。
在上一个问题中,我询问如何在“管理”部分的“帖子”页面中添加一列,并获得了有效的答案。但是,现在我需要知道如何删除现有的列(例如Date列),以便我自定义的Date列替换它。
Answers:
在其他字段上,也可以禁用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-string用于post_type,也可以通过以下方式将其用于所有post类型:
foreach ( get_post_types() as $post_type ) {
remove_post_type_support( $post_type, 'comments' );
}