volume4
Member
Posted 2 years ago #
On all pages the following line is added in the <head> of the document:
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.sawsag.co.za/xmlrpc.php?rsd" />
I understand the purpose of this line but, from where is this line loaded? The reason I ask is because I need to remove the closing /> of the link structure.
Thanks!
Odds are, it'll be in your theme's header.php, between the <head> tags.
volume4
Member
Posted 2 years ago #
Yes, from what I could see this line generates that: wp_head
volume4
Member
Posted 2 years ago #
Ok, for anyone that might be in this situation in the future, here is where you will find the line:
general-template.php
template-functions-general.php
look for these lines
function rsd_link() {
echo '<link rel="EditURI" type="application/rsd+xml" title="RSD" href="' . get_bloginfo('wpurl') . "/xmlrpc.php?rsd\" />\n";
}