WP_REST_Menus_Controller::prepare_links( WP_Term $term ): array

Prepares links for the request.


Parameters

$term WP_Term Required
Term object.

Top ↑

Return

array Links for the given term.


Top ↑

Source

File: wp-includes/rest-api/endpoints/class-wp-rest-menus-controller.php. View all references

protected function prepare_links( $term ) {
	$links = parent::prepare_links( $term );

	$locations = $this->get_menu_locations( $term->term_id );
	foreach ( $locations as $location ) {
		$url = rest_url( sprintf( 'wp/v2/menu-locations/%s', $location ) );

		$links['https://api.w.org/menu-location'][] = array(
			'href'       => $url,
			'embeddable' => true,
		);
	}

	return $links;
}


Top ↑

Changelog

Changelog
Version Description
5.9.0 Introduced.

Top ↑

User Contributed Notes

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