wp_get_post_revisions_url

函数
wp_get_post_revisions_url ( $post = 0 )
参数
  • (int|WP_Post) $post Optional. Post ID or WP_Post object. Default is global `$post`.
    Required:
返回值
  • (string|null) The URL for editing revisions on the given post, otherwise null.
定义位置
相关方法
wp_get_post_revisionswp_get_post_revisionwp_list_post_revisions_wp_get_post_revision_versionwp_delete_post_revision
引入
5.9.0
弃用
-

wp_get_post_revisions_url: 这个函数用来生成一个特定文章的修订界面的URL。它将文章的ID作为参数并返回URL。

返回用于查看和可能恢复某一特定文章的修订版的URL。

function wp_get_post_revisions_url( $post = 0 ) {
	$post = get_post( $post );

	if ( ! $post instanceof WP_Post ) {
		return null;
	}

	// If the post is a revision, return early.
	if ( 'revision' === $post->post_type ) {
		return get_edit_post_link( $post );
	}

	if ( ! wp_revisions_enabled( $post ) ) {
		return null;
	}

	$revisions = wp_get_latest_revision_id_and_total_count( $post->ID );

	if ( is_wp_error( $revisions ) || 0 === $revisions['count'] ) {
		return null;
	}

	return get_edit_post_link( $revisions['latest_id'] );
}

常见问题

FAQs
查看更多 >