在中添加以下代码current theme\'s functions.php 文件
你必须更换USER ROLE 用户角色名称处于if条件下。
function check_edit_post($post_id){
global $post;
if( in_array(\'USER ROLE\', wp_get_current_user()->roles) && \'product\' == get_post_type($post_id) && \'publish\' == get_post_status($post_id) && $post->post_date != $post->post_modified ){
wp_update_post(array(
\'ID\' => $post_id,
\'post_status\' => \'draft\'
));
}
}
add_action( \'save_post\', \'check_edit_post\' );
希望这对你有帮助。