<?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>WpFunc &#187; hide</title>
	<atom:link href="http://wpfunc.com/tag/hide/feed" rel="self" type="application/rss+xml" />
	<link>http://wpfunc.com</link>
	<description>Awesome, Quick, Simple WordPress Functions!</description>
	<lastBuildDate>Thu, 01 Dec 2011 01:17:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to change dashboard footer texts?</title>
		<link>http://wpfunc.com/wordpress/how-to-change-dashboard-footer-texts.html</link>
		<comments>http://wpfunc.com/wordpress/how-to-change-dashboard-footer-texts.html#comments</comments>
		<pubDate>Tue, 19 Jan 2010 20:23:31 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[footer links]]></category>
		<category><![CDATA[functions.php]]></category>
		<category><![CDATA[hide]]></category>
		<category><![CDATA[remove]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress dashboard]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=371</guid>
		<description><![CDATA[When you build a theme you can use this code for hide/remove WordPress Dashboard&#8217;s links. you have to add this code into your theme&#8217;s functions.php. After that you can write your own text with dashboard footer. Let&#8217;s Begin&#8230;
Here is the code;
Don&#8217;t forget. You will add this code into your theme&#8217;s functions.php. Have a nice day!
]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">When you build a theme you can use this code for hide/remove WordPress Dashboard&#8217;s links. you have to add this code into your theme&#8217;s functions.php. After that you can write your own text with dashboard footer. Let&#8217;s Begin&#8230;<span id="more-371"></span></p>
<h3>Here is the code;</h3>
<pre class="brush: php; title: ; notranslate">function remove_footer_admin () {
    echo &quot;Your own text&quot;;
}
add_filter('admin_footer_text', 'remove_footer_admin');
</pre>
<p style="text-align: justify;">Don&#8217;t forget. You will add this code into your<em><span style="color: #ff0000;"><strong> theme&#8217;s functions.php</strong></span></em>. Have a nice day!</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/how-to-change-dashboard-footer-texts.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Hide Your Single Post From Search Engines</title>
		<link>http://wpfunc.com/wordpress/how-to-hide-your-single-post-from-search-engines.html</link>
		<comments>http://wpfunc.com/wordpress/how-to-hide-your-single-post-from-search-engines.html#comments</comments>
		<pubDate>Sat, 18 Jul 2009 01:26:10 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[hide]]></category>
		<category><![CDATA[if]]></category>
		<category><![CDATA[no-index]]></category>
		<category><![CDATA[noindex]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=60</guid>
		<description><![CDATA[Have you ever a semi-private post? If your answer is &#8216;yes&#8216; you can hide your post from search engines. How? Very Simple. It&#8217;s only 3 line code. With this code you will add a noindex tag to your post. Firstly you have to know your post ID. It&#8217;s important for this code. If you already [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Have you ever a semi-private post? If your answer is &#8216;<strong>yes</strong>&#8216; you can hide your post from search engines. How? Very Simple. It&#8217;s only 3 line code. With this code you will add a noindex tag to your post. Firstly you have to know your post <strong><span style="color: #ff0000;">ID</span></strong>. It&#8217;s important for this code. If you already know, lets begin&#8230;<span id="more-60"></span></p>
<p style="text-align: justify;">Open your <em><strong><span style="color: #ff0000;">header.php</span></strong></em> and add this code between <strong>&lt;head&gt;</strong> and <strong>&lt;/head&gt;</strong> tags.</p>
<pre class="brush: plain; title: ; notranslate"> &lt;?php if ($post-&gt;ID == xx) {
    echo '&lt;meta name=&quot;robots&quot; content=&quot;noindex&quot;&gt;';
} ?&gt;</pre>
<p>Change xx with your post&#8217;s ID.</p>
<p>That&#8217;s All. Have a nice day!</p>
<p><span style="color: #ffffff;">For Technorati:2iu6n4qx9s</span></p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/how-to-hide-your-single-post-from-search-engines.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

