您可以使用transition\\u post\\u状态:
add_action(\'transition_post_status\', \'wpse_handle_untrash\');
function wpse_handle_untrash($new_status, $old_status, $post) {
// if the post was in the trash, but now is not
if($old_status == \'trash\') {
// if you want, you can do something only for a certain post type
if($post->post_type == \'my-desired-post-type\') {
// do something
echo \'<script>alert(\' . $post->ID . \');</script>\';
}
}
}
如果你能解释一下当一篇文章没有经过润色时你想做什么,这将有助于你找到一个解决方案来完成它。JS警报是您最终希望实现的目标吗?
This question 可能会给你一些想法。