rest_output_rsd()WP 4.4.0

Adds the REST API URL to the WP RSD endpoint.

No Hooks.

Return

null. Nothing (null).

Usage

rest_output_rsd();

Notes

Changelog

Since 4.4.0 Introduced.

rest_output_rsd() code WP 6.5.2

<?php
function rest_output_rsd() {
	$api_root = get_rest_url();

	if ( empty( $api_root ) ) {
		return;
	}
	?>
	<api name="WP-API" blogID="1" preferred="false" apiLink="<?php echo esc_url( $api_root ); ?>" />
	<?php
}