

<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Get into the culture! &#187; Functions</title>
	<atom:link href="http://wpvibe.com/tag/functions/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpvibe.com</link>
	<description>Just another EMV Network Site site</description>
	<lastBuildDate>Sun, 26 Feb 2012 22:21:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Remove the WordPress Version Generator</title>
		<link>http://wpvibe.com/remove-the-wordpress-version-generator-20/</link>
		<comments>http://wpvibe.com/remove-the-wordpress-version-generator-20/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 16:06:19 +0000</pubDate>
		<dc:creator>Jonathan Dingman</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Functions]]></category>

		<guid isPermaLink="false">http://wpvibe.com/?p=20</guid>
		<description><![CDATA[When 2.5.0 was released, the WordPress version generator was moved from being in the template itself into being a wp_head() hook instead. The hook is automatically added so you don&#8217;t have as much control over it. If you want to remove the version: meta name="generator" content="WordPress 2.8.4" Add this piece of code to your functions.php ...]]></description>
			<content:encoded><![CDATA[<p>When 2.5.0 was released, the WordPress version generator was moved from being in the template itself into being a wp_head() hook instead.  The hook is automatically added so you don&#8217;t have as much control over it.</p>
<p>If you want to remove the version:</p>
<p> <code>meta name="generator" content="WordPress 2.8.4"</code></p>
<p>Add this piece of code to your <strong>functions.php</strong> file in your theme:</p>
<p>[sourcecode]<br />
remove_action(&#8216;wp_head&#8217;, &#8216;wp_generator&#8217;);<br />
[/sourcecode]</p>
<p>That bit of code will stop WordPress from adding the WordPress version generator to your source code.</p>
<p>For plugins related to the &#8220;version,&#8221; you can <a href="http://wordpress.org/extend/plugins/tags/version">look on wordpress.org</a>.</p>
<p>It&#8217;s a simple, yet effective tutorial, on achieving what you want to get done.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpvibe.com/remove-the-wordpress-version-generator-20/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

