如何禁用WordPress页面修订? 时间:2017-03-24 作者:raja 我想禁用没有插件的Wordpress中的页面修订。所有这些都在讲述修订后的情况。我禁用了后期修订,有人能告诉我如何在wordpress中禁用页面修订而不是后期修订吗。 1 个回复 SO网友:Howdy_McGee 默认情况下,页面和帖子支持非常相似的内容。完整列表可以是found on Trac. 如果要删除其中一个帖子类型功能,可以使用remove_post_type_support() function:function remove_posttype_supports() { remove_post_type_support( \'page\', \'revisions\' ); } add_action( \'init\', \'remove_posttype_supports\' ); 您需要在函数中输入上述内容。php或作为插件。 文章导航