The latest WordPress codebase can be obtained from either of the following sources:
http://static.wordpress.org/builds/?C=M;O=D
http://svn.automattic.com/wordpress/trunk/
The latest WordPress codebase can be obtained from either of the following sources:
http://static.wordpress.org/builds/?C=M;O=D
http://svn.automattic.com/wordpress/trunk/
By default, WordPress default filters adds rsd_link() and wlwmanifest_link() which outputs the following lines within the <head></head> section of your theme template file:
<head>
…
<link rel="EditURI" type="application/rsd xml" title="RSD"
href="http://safirulalredha.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest xml"
href="http://safirulalredha.com/wp-includes/wlwmanifest.xml" />
…
</head>
You can remove clutter of unused rsd_link() (Really Simple Discovery) or wlwmanifest_link() (Windows Live Writer) by adding the following to your theme functions.php:
remove_action(’wp_head’, [...]