rsd_link()WP 2.0.0

Displays the link to the Really Simple Discovery service endpoint.

No Hooks.

Return

null. Nothing (null).

Usage

rsd_link();

Changelog

Since 2.0.0 Introduced.

rsd_link() code WP 6.5.2

function rsd_link() {
	printf(
		'<link rel="EditURI" type="application/rsd+xml" title="RSD" href="%s" />' . "\n",
		esc_url( site_url( 'xmlrpc.php?rsd', 'rpc' ) )
	);
}