wp_get_post_revisions()

wp_get_post_revisions( int|WP_Post $post_id, array|null…

wp_get_post_revisions( int|WP_Post $post_id, array|null $args = null )

返回指定文章的所有修订。
Returns all revisions of specified post.

目录锚点:#说明#参数#源码


说明(Description)

另请参阅get_children()


参数(Parameters)

参数 类型 说明
$post_id (int | WP_Post) Post ID或WP_Post对象。默认值为global$post。
$args (array | null) 用于检索后期修订的参数。

源码(Source)

/**
 * Returns all revisions of specified post.
 *
 * @since 2.6.0
 *
 * @param int|WP_Post $post_id Optional. Post ID or WP_Post object. Default is global $post.
 * @return array An array of revisions, or an empty array if none.
 */
function wp_get_post_revisions( $post_id = 0, $args = null ) {
	$post = get_post( $post_id );
	if ( ! $post || empty( $post->ID ) )
		return array();

	$defaults = array( 'order' => 'DESC', 'orderby' => 'date ID', 'check_enabled' => true );
	$args = wp_parse_args( $args, $defaults );

	if ( $args['check_enabled'] && ! wp_revisions_enabled( $post ) )
		return array();

	$args = array_merge( $args, array( 'post_parent' => $post->ID, 'post_type' => 'revision', 'post_status' => 'inherit' ) );

	if ( ! $revisions = get_children( $args ) )
		return array();

	return $revisions;
}
更新版本 源码位置 使用 被使用
2.6.0 wp-includes/revision.php 15 18
类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册