如何获取在wp_UPDATE_POST之后创建的最后版本ID

时间:2013-06-10 作者:Andy

wordpress总是在调用wp\\u update\\u post后存储修订。调用wp\\u update\\u post后如何获取post修订ID?

谢谢

1 个回复
SO网友:chrisguitarguy

You can use wp_get_post_revisions.

<?php
// some logic here

$post_id = wp_update_post(/* ... */);
$latest_revision = array_shift(wp_get_post_revisions($post_id));

if ($latest_revision) {
   // do stuff with the latest revision
   // $latest_revision->ID will contain the latest revision
}
结束

相关推荐