WordPress禁用或限制文章修订历史版本

· WordPress · 47 views

修改wp-config.php文件‌
在wp-config.php文件中添加以下代码:
禁用文章修订历史版本

define('WP_POST_REVISIONS', false);


修改主题的functions.php文件‌
在主题的functions.php文件中添加以下代码:

function disable_revisions() {
    $post_types = get_post_types();
    foreach ( $post_types as $post_type ) {
        remove_post_type_support( $post_type, 'revisions' );
    }
}
add_action("init", "disable_revisions");

或限制文章修订历史版本
在wp-config.php文件中添加以下代码:

define('WP_POST_REVISIONS', 3);