<?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; Yahoo</title>
	<atom:link href="http://wpfunc.com/tag/yahoo/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>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>

