rsd_link() WordPress Function
The rsd_link() function allows you to easily include an RSD (Really Simple Discovery) link in your WordPress site. RSD is a way for clients to auto-discover your site's XML-RPC interface. This function automatically adds the necessary RSD link into the
section of your site.rsd_link() #
Display the link to the Really Simple Discovery service endpoint.
Source
File: wp-includes/general-template.php
function rsd_link() { echo '<link rel="EditURI" type="application/rsd+xml" title="RSD" href="' . esc_url( site_url( 'xmlrpc.php?rsd', 'rpc' ) ) . '" />' . "\n"; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.0.0 | Introduced. |