如果不起作用,您可以尝试使用wp_insert_post
措施:
function insert_post_hook($post_id, $post) {
if ($post->post_date != $post->post_modified) {
// This post is being updated!
}
else {
// This post is being created!
}
}
add_action( \'wp_insert_post\', \'insert_post_hook\', 10, 2 );
如果要查看最新版本,可以启用修订:
define(\'WP_POST_REVISIONS\', 3 );
这将最多保存3个修订。
启用后,您可以检查以下内容:
$latest_revision = array_shift(wp_get_post_revisions($post->ID));