你可以这样做。我测试了它,它成功了。我不知道它有多稳定,所以你应该自己做一些测试:
function rsp_remove_post_while_saving($post_id) {
remove_action( \'save_post\', \'rsp_remove_post_while_saving\', 13, 2 );
wp_trash_post($post_id);
}
function add_myself($content){
// if your post is not valid {
add_action( \'save_post\', \'rsp_remove_post_while_saving\' );
// }
}
add_filter(\'content_save_pre\',\'add_myself\');