WordPress自定义文章类型删除编辑区功能函数:remove_post_type_support

WordPress函数remove_post_type_support用于删除自定义文章类型编辑区功能。

remove_post_type_support( string $post_type, string $feature )

函数参数

$post_type

字符串

自定义文章类型

$feature

字符串或数组

需要删除的功能,例如:title、editor、comments、revisions、trackbacks、author、excerpt、page-attributes、thumbnail、custom-fields、and post-formats

函数使用示例

删除文章编辑区的摘要功能:

function wprocs_custom_init() {
    remove_post_type_support( 'post', 'excerpt' );
}
add_action( 'init', 'wpdocs_custom_init' );

扩展阅读

remove_post_type_support()函数位于:wp-includes/post.php

相关函数:

原创文章,作者:,如若转载,请注明出处:https://ce.771633.xyz/1800.html

Like (0)
Previous 2025年3月8日
Next 2025年3月8日

相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注