<?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; Google</title>
	<atom:link href="http://wpfunc.com/tag/google/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>Display Custom Content to Search Engine Visitors!</title>
		<link>http://wpfunc.com/wordpress/display-custom-content-to-search-engine-visitors.html</link>
		<comments>http://wpfunc.com/wordpress/display-custom-content-to-search-engine-visitors.html#comments</comments>
		<pubDate>Mon, 28 Dec 2009 10:24:51 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[del.icio.us]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[functions.php]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[search engine]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[visitors]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=337</guid>
		<description><![CDATA[With this code you can show a custom message or contet to your search-engine visitors. We will edit funcitons.php and any theme file you want to show your content to search engine vsitors. Let&#8217;s Begin&#8230;
Here is the code;
Backup and open your theme&#8217;s functions.php and insert this code into it.
You can edit or add any search [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">With this code you can show a custom message or contet to your search-engine visitors. We will edit <span style="color: #ff0000;"><strong>funcitons.php </strong></span>and any theme file you want to show your content to search engine vsitors. Let&#8217;s Begin&#8230;<span id="more-337"></span></p>
<h3>Here is the code;</h3>
<p style="text-align: justify;"><strong><span style="color: #ff9900;">Backup</span></strong> and open your theme&#8217;s <span style="color: #ff0000;"><strong>functions.php</strong></span> and insert this code into it.</p>
<pre class="brush: php; title: ; notranslate">&lt;?php function search_engine_visitors() {

	$ref = $_SERVER['HTTP_REFERER'];
	$SE  = array('/search?', 'images.google.', 'web.info.com', 'search.', 'del.icio.us/search', 'soso.com', '/search/', '.yahoo.');

	foreach($SE as $source) {
		if(strpos($ref, $source) !== false) return true;
	}
	return false;
} ?&gt;</pre>
<p style="text-align: justify;">You can edit or add any search engine rules into $SE. After that your function is ready. Insert this code below where you want to show your custom content to visitors.</p>
<pre class="brush: php; title: ; notranslate">&lt;?php if(function_exists('search_engine_visitors')) {
	if (search_engine_visitors()) {

		// INSERT YOUR CODE HERE

	}
} ?&gt;</pre>
<p style="text-align: justify;">That&#8217;s All. Have a nice day!</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/display-custom-content-to-search-engine-visitors.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable Caching!</title>
		<link>http://wpfunc.com/wordpress/disable-caching.html</link>
		<comments>http://wpfunc.com/wordpress/disable-caching.html#comments</comments>
		<pubDate>Tue, 20 Oct 2009 16:30:39 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[disable caching]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[header.php]]></category>
		<category><![CDATA[robots]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=270</guid>
		<description><![CDATA[Search engines are cahce our/your site for search results. If you want to disable this function sor search engines (ex. Google, Yahoo) just place a meta tag to your header. Lets&#8217; begin&#8230;
Here is the code;

Just place this code to your header.php. With this code your site and posts will not cache by search engines.
]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Search engines are cahce our/your site for search results. If you want to disable this function sor search engines (ex. Google, Yahoo) just place a meta tag to your header. Lets&#8217; begin&#8230;<span id="more-270"></span></p>
<h3>Here is the code;</h3>
<pre class="brush: xml; title: ; notranslate">&lt;meta name=&quot;robots&quot; content=&quot;noarchive&quot;&gt;</pre>
<p style="text-align: justify;">
Just place this code to your header.php. With this code your site and posts will not cache by search engines.</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/disable-caching.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Do you want to add your ads to your Blog Feed?</title>
		<link>http://wpfunc.com/wordpress/do-you-want-to-add-your-ads-to-your-blog-feed.html</link>
		<comments>http://wpfunc.com/wordpress/do-you-want-to-add-your-ads-to-your-blog-feed.html#comments</comments>
		<pubDate>Thu, 23 Jul 2009 21:30:36 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google adsense]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[site]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=93</guid>
		<description><![CDATA[Some of my friends are use feedburner with adsense. That&#8217;s good but i think feedburner&#8217;s policity is not good. If you think like me you can add your google ads to your blog feed. It&#8217;s simply and more useful than feedburner. When someone subscribe your feed he/she can click your ads from any RSS reader. [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Some of my friends are use feedburner with adsense. That&#8217;s good but i think feedburner&#8217;s policity is not good. If you think like me you can add your google ads to your blog feed. It&#8217;s simply and more useful than feedburner. When someone subscribe your feed he/she can click your ads from any RSS reader. Lets begin&#8230;<span id="more-93"></span></p>
<p style="text-align: justify;">We make changes on your <strong><em><span style="color: #ff0000;"><span style="color: #008000;">themes</span> functions.php</span></em></strong>. If your theme <strong><span style="color: #008000;">have no </span></strong>functions.php simply create one and paste this code in your file ;</p>
<h3>Here is the Code;</h3>
<pre class="brush: plain; title: ; notranslate">&lt;?php
 function insertAds($content) {
 $content = $content.'&lt;hr /&gt;&lt;a href=&quot;http://www.wpfunc.com&quot;&gt;Hola, Awesome, Quick, Simple WordPress Functions&lt;/a&gt;&lt;hr /&gt;';
 return $content;
 }
 add_filter('the_excerpt_rss', 'insertAds');
 add_filter('the_content_rss', 'insertAds');
?&gt;</pre>
<p style="text-align: justify;">If you change <strong><em>$conten</em><em>t</em></strong> area (between <strong>&lt;hr/&gt;</strong> and <strong>&lt;hr/&gt;</strong>) you can change it with your google adsense code.</p>
<p style="text-align: justify;">That&#8217;s All! Have a nice day!</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/do-you-want-to-add-your-ads-to-your-blog-feed.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>
		<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 begin&#8230;
No-Index [...]]]></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>
		<item>
		<title>You Can Hide Your Contents From Google!</title>
		<link>http://wpfunc.com/wordpress/you-can-hide-your-contents-from-google.html</link>
		<comments>http://wpfunc.com/wordpress/you-can-hide-your-contents-from-google.html#comments</comments>
		<pubDate>Fri, 17 Jul 2009 02:05:58 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[crawl]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[hide content]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[non-complex]]></category>
		<category><![CDATA[spiders]]></category>

		<guid isPermaLink="false">http://www.wpfunc.com/?p=29</guid>
		<description><![CDATA[Yes, you can hide your contents from google. How? Very Simple. You need only a simple code. When you apply this code in your post, Google spiders not see this content. If you have a special code, you can hide from google search results. I will give you a non-complex code. This code supports by [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Yes, you can hide your contents from google. How? Very Simple. You need only a simple code. When you apply this code in your post, Google spiders not see this content. If you have a special code, you can hide from google search results. I will give you a non-complex code. This code supports by Google!<span id="more-29"></span></p>
<h3>Here is The Code;</h3>
<pre class="brush: plain; title: ; notranslate">&lt;!--googleoff: all--&gt;&amp;nbsp; &lt;!--googleon: all&gt;</pre>
<p style="text-align: justify;">When you write your content between this code Google spiders don&#8217;t read this area. After then, your special code or content don&#8217;t display on Search Results.</p>
<h3>Here is an example;</h3>
<pre class="brush: plain; title: ; notranslate">Google can see this content because this is before our code
&lt;!--googleoff: all--&gt; but Google don't read this area, because this is between our code... &lt;!--googleon: all&gt;
And Google Spiders can be read this content because this is after our code...</pre>
<p style="text-align: justify;">You can apply this code from <strong>HTML</strong> editing area. This is very simple!</p>
<p>Have a nice day!</p>
]]></content:encoded>
			<wfw:commentRss>http://wpfunc.com/wordpress/you-can-hide-your-contents-from-google.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

