WP_REST_Global_Styles_Controller::prepare_links( integer $id ): array

In this article

Prepares links for the request.

Parameters

$idintegerrequired
ID.

Return

array Links for the given post.

Source

protected function prepare_links( $id ) {
	$base = sprintf( '%s/%s', $this->namespace, $this->rest_base );

	$links = array(
		'self' => array(
			'href' => rest_url( trailingslashit( $base ) . $id ),
		),
	);

	if ( post_type_supports( $this->post_type, 'revisions' ) ) {
		$revisions                = wp_get_latest_revision_id_and_total_count( $id );
		$revisions_count          = ! is_wp_error( $revisions ) ? $revisions['count'] : 0;
		$revisions_base           = sprintf( '/%s/%d/revisions', $base, $id );
		$links['version-history'] = array(
			'href'  => rest_url( $revisions_base ),
			'count' => $revisions_count,
		);
	}

	return $links;
}

Changelog

VersionDescription
6.3.0Adds revisions count and rest URL href to version-history.
5.9.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.