wp_get_post_revisions

函数
wp_get_post_revisions ( $post = 0, $args = null )
参数
  • (int|WP_Post) $post Optional. Post ID or WP_Post object. Default is global `$post`.
    Required:
  • (array|null) $args Optional. Arguments for retrieving post revisions. Default null.
    Required:
    Default: null
返回值
  • (WP_Post[]|int[]) Array of revision objects or IDs, or an empty array if none.
相关
  • get_children()
定义位置
相关方法
wp_get_post_revisionwp_get_post_revisions_urlwp_list_post_revisionswp_delete_post_revision_wp_put_post_revision
引入
2.6.0
弃用
-

wp_get_post_revisions: 这个函数用来检索一个特定文章的所有修订版。它返回一个修订对象的数组,每个对象都包含有关修订的信息,包括文章内容和元数据。

返回指定文章的所有修订版。

function wp_get_post_revisions( $post = 0, $args = null ) {
	$post = get_post( $post );

	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',
		)
	);

	$revisions = get_children( $args );

	if ( ! $revisions ) {
		return array();
	}

	return $revisions;
}

常见问题

FAQs
查看更多 >