函数原型
post_revisions_meta_box( WP_Post $post )
函数描述
Displays list of revisions.
是否弃用
未弃用
函数参数
-
$post
WP_Post
Required - Current post object.
函数返回值
无
函数位置
File: wp-admin/includes/meta-boxes.php.
函数源码
function post_revisions_meta_box( $post ) {
wp_list_post_revisions( $post );
}
源码链接
变更日志
| Version | Description |
|---|---|
| 2.6.0 | Introduced. |

