<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Safirul Alredha</title>
	<atom:link href="http://safirulalredha.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://safirulalredha.com</link>
	<description>Just another WordPress blog!</description>
	<pubDate>Fri, 16 May 2008 10:07:39 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>WordPress Nightly Builds, Subversion (SVN) Repository</title>
		<link>http://safirulalredha.com/post/wordpress-nightly-builds-subversion-svn-repository/</link>
		<comments>http://safirulalredha.com/post/wordpress-nightly-builds-subversion-svn-repository/#comments</comments>
		<pubDate>Sat, 17 Nov 2007 18:39:00 +0000</pubDate>
		<dc:creator>Safirul Alredha</dc:creator>
		
		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[nightly]]></category>

		<category><![CDATA[repository]]></category>

		<category><![CDATA[subversion]]></category>

		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://safirulalredha.com/post/wordpress-nightly-builds-subversion-svn-repository/</guid>
		<description><![CDATA[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/

]]></description>
			<content:encoded><![CDATA[<p>The latest WordPress codebase can be obtained from either of the following sources:</p>
<ul>
<li><a href="http://static.wordpress.org/builds/?C=M;O=D">http://static.wordpress.org/builds/?C=M;O=D</a></li>
<li><a href="http://svn.automattic.com/wordpress/trunk/">http://svn.automattic.com/wordpress/trunk/</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://safirulalredha.com/post/wordpress-nightly-builds-subversion-svn-repository/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Remove WordPress rsd_link(), wlwmanifest_link(), wp_generator()</title>
		<link>http://safirulalredha.com/post/remove-wordpress-rsd_link-wlwmanifest_link-wp_generator/</link>
		<comments>http://safirulalredha.com/post/remove-wordpress-rsd_link-wlwmanifest_link-wp_generator/#comments</comments>
		<pubDate>Wed, 07 Nov 2007 06:56:51 +0000</pubDate>
		<dc:creator>Safirul Alredha</dc:creator>
		
		<category><![CDATA[WordPress]]></category>

		<category><![CDATA[plugin]]></category>

		<category><![CDATA[rsd]]></category>

		<category><![CDATA[rsd_link]]></category>

		<category><![CDATA[svn]]></category>

		<category><![CDATA[windows live writer]]></category>

		<category><![CDATA[wlwmanifest_link]]></category>

		<category><![CDATA[wp_generator]]></category>

		<guid isPermaLink="false">http://safirulalredha.com/post/remove-rsd_link-wlwmanifest_link/</guid>
		<description><![CDATA[By default, WordPress default filters adds rsd_link() and wlwmanifest_link() which outputs the following lines within the &#60;head&#62;&#60;/head&#62; section of your theme template file:

&#60;head&#62;
...
&#60;link rel=&#34;EditURI&#34; type=&#34;application/rsd xml&#34; title=&#34;RSD&#34;
 href=&#34;http://safirulalredha.com/xmlrpc.php?rsd&#34; /&#62;
&#60;link rel=&#34;wlwmanifest&#34; type=&#34;application/wlwmanifest xml&#34;
href=&#34;http://safirulalredha.com/wp-includes/wlwmanifest.xml&#34; /&#62;
...
&#60;/head&#62;

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', [...]]]></description>
			<content:encoded><![CDATA[<p>By default, WordPress default filters adds <code>rsd_link()</code> and <code>wlwmanifest_link()</code> which outputs the following lines within the <code>&lt;head&gt;&lt;/head&gt;</code> section of your theme template file:</p>
<pre>
&lt;head&gt;
...
&lt;link rel=&quot;EditURI&quot; type=&quot;application/rsd xml&quot; title=&quot;RSD&quot;
 href=&quot;http://safirulalredha.com/xmlrpc.php?rsd&quot; /&gt;
&lt;link rel=&quot;wlwmanifest&quot; type=&quot;application/wlwmanifest xml&quot;
href=&quot;http://safirulalredha.com/wp-includes/wlwmanifest.xml&quot; /&gt;
...
&lt;/head&gt;
</pre>
<p>You can remove clutter of unused <code>rsd_link()</code> (Really Simple Discovery) or <code>wlwmanifest_link()</code> (Windows Live Writer) by adding the following to your theme <code>functions.php</code>:</p>
<pre>
remove_action('wp_head', 'rsd_link');
remove_action('wp_head', 'wlwmanifest_link');
</pre>
<h3>Remove rsd_link() and / or wlwmanifest_link() WordPress plugin</h3>
<p>Optionally, you can download <a href="http://download.safirulalredha.com/remove-rsd_link-wlwmanifest_link.zip">remove rsd_link() and / or wlwmanifest_link() WordPress plugin</a>. To install, please read <a href="http://codex.wordpress.org/Managing_Plugins#Plugin_Installation">WordPress Plugin Installation</a> or simply extract the zip files to your <code>wp-content/plugins</code> folder and activate. </p>
<h3>wp_generator()</h3>
<p>In case that you&#8217;re using the latest <a href="http://svn.automattic.com/wordpress/trunk">bleeding edge version of WordPress</a>, in revision <a href="http://trac.wordpress.org/changeset/6195">6195</a> WordPress introduced a new default filter that hooks a generator tag to <code>wp_head()</code> which outputs:</p>
<pre>
&lt;meta name=&quot;generator&quot; content=&quot;WordPress/...&quot; /&gt;
</pre>
<p>Besides the <code>&lt;head&gt;&lt;/head&gt;</code> section of your theme template file, it also creates the generator XML or Comment for RSS, ATOM and etc.</p>
<p>To remove the generator tag, just add <code>remove_action('wp_head', 'wp_generator');</code> to your theme <code>functions.php</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://safirulalredha.com/post/remove-wordpress-rsd_link-wlwmanifest_link-wp_generator/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://safirulalredha.com/post/hello-world/</link>
		<comments>http://safirulalredha.com/post/hello-world/#comments</comments>
		<pubDate>Sat, 06 Oct 2007 15:57:12 +0000</pubDate>
		<dc:creator>Safirul Alredha</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://safirulalredha.com/?p=1</guid>
		<description><![CDATA[Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!
]]></description>
			<content:encoded><![CDATA[<p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://safirulalredha.com/post/hello-world/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
