rest_output_rsd()
Adds the REST API URL to the WP RSD endpoint.
No Hooks.
Returns
null. Nothing (null).
Usage
rest_output_rsd();
Notes
- See: get_rest_url()
Changelog
| Since 4.4.0 | Introduced. |
rest_output_rsd() rest output rsd code WP 6.9.1
<?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
}