将以下内容添加到functions.php
当你插手并在之后将其删除,或将其注释掉时:
function no_mod_wpse_136092($data,$postarr){
if (empty($postarr[\'ID\'])) return $data;
$old = get_post($postarr[\'ID\']);
if (!empty($old)) {
$data[\'post_modified\'] = $old->post_modified;
$data[\'post_modified_gmt\'] = $old->post_modified_gmt;
}
return $data;
}
add_action(\'wp_insert_post_data\',\'no_mod_wpse_136092\',10,2);