<?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; no-index</title>
	<atom:link href="http://wpfunc.com/tag/no-index/feed" rel="self" type="application/rss+xml" />
	<link>http://wpfunc.com</link>
	<description>Awesome, Quick, Simple WordPress Functions!</description>
	<lastBuildDate>Sun, 06 May 2012 02:21:37 +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 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>
		<item>
		<title>Add No-Index to Images</title>
		<link>http://wpfunc.com/wordpress/add-no-index-to-images.html</link>
		<comments>http://wpfunc.com/wordpress/add-no-index-to-images.html#comments</comments>
		<pubDate>Fri, 17 Jul 2009 10:00:19 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[no-index]]></category>
		<category><![CDATA[robots]]></category>
		<category><![CDATA[spiders]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=33</guid>
		<description><![CDATA[When Google spiders reach to our site, google automatically index everything with our site images. If we want to make a non-indexable images, there is a simple code. We can make all our images non-indexable. We will add a code to our header.php. Also we can stop directory indexing with simple Robots.txt command. And we [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">When Google spiders reach to our site, google automatically index everything with our site images. If we want to make a non-indexable images, there is a simple code. We can make all our images non-indexable. We will add a code to our header.php. Also we can stop directory indexing with simple Robots.txt command.<span id="more-33"></span></p>
<p>And we begin&#8230;</p>
<h3 style="text-align: justify;">No-Index for all images</h3>
<pre class="brush: plain; title: ; notranslate">&lt;meta name=&quot;robots&quot; content=&quot;noimageindex&quot;&gt;</pre>
<p style="text-align: justify;">Add this code to <strong><em>header.php</em></strong> and Google don&#8217;t resume to index your images.</p>
<p style="text-align: justify;">Also if you want to stop directory indexing. Open your <strong><em>robots.txt</em></strong>. This file located in your <em><strong>Root</strong></em> area;</p>
<p style="text-align: justify;">Ex: We have  <strong>images</strong> and <strong>siteimages</strong> folders. And we have a robots.txt like this.</p>
<pre class="brush: plain; title: ; notranslate">User-agent: *
Disallow:</pre>
<p style="text-align: justify;">We will change this to;</p>
<pre class="brush: plain; title: ; notranslate">User-agent: *
Disallow: /images/
Disallow: /siteimages/</pre>
<p>Thats All! Have a nice day!</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/add-no-index-to-images.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

