wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



rest_output_rsd › WordPress Function

Seit4.4.0
Veraltetn/v
rest_output_rsd ( Keine Parameter )
Siehe:
Definiert in:
Codex:

Adds the REST API URL to the WP RSD endpoint.



Quellcode

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
}