<?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>WP-Simple &#187; dofollow</title>
	<atom:link href="http://www.wp-simple.ru/tag/dofollow/feed" rel="self" type="application/rss+xml" />
	<link>http://www.wp-simple.ru</link>
	<description>Подсказки, советы, тюнинг, хаки, новости, плагины и темы WordPress</description>
	<lastBuildDate>Thu, 04 Feb 2010 07:19:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Автоматическое удаление Nofollow из постов</title>
		<link>http://www.wp-simple.ru/automatically-remove-nofollow-from-posts.html</link>
		<comments>http://www.wp-simple.ru/automatically-remove-nofollow-from-posts.html#comments</comments>
		<pubDate>Thu, 04 Feb 2010 07:19:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO и WordPress]]></category>
		<category><![CDATA[Подсказки и полезные советы]]></category>
		<category><![CDATA[Тюнинг WordPress]]></category>
		<category><![CDATA[dofollow]]></category>
		<category><![CDATA[nofollow]]></category>

		<guid isPermaLink="false">http://www.wp-simple.ru/?p=162</guid>
		<description><![CDATA[По умолчанию WordPress настроен так что автоматически добавляет ко всем ссылкам в вашей статье тег nofollow. Если вы сторонник dofollow, то вам этот рецепт пригодится.
Копируем ниженаписанный код в functions.php вашей темы.
function remove_nofollow($string) {
	$string = str_ireplace(' rel="nofollow"', '', $string);
	return $string;
}
add_filter('the_content', 'remove_nofollow');

Как только вы сохраните этот файл у всех ссылок удалиться тег nofollow.
Автоматическая защита от спамаПодсчет слов [...]]]></description>
			<content:encoded><![CDATA[<p>По умолчанию WordPress настроен так что автоматически добавляет ко всем ссылкам в вашей статье тег nofollow. Если вы сторонник dofollow, то вам этот рецепт пригодится.</p>
<p>Копируем ниженаписанный код в functions.php вашей темы.</p>
<blockquote><pre>function remove_nofollow($string) {
	$string = str_ireplace(' rel="nofollow"', '', $string);
	return $string;
}
add_filter('the_content', 'remove_nofollow');</pre>
</blockquote>
<p>Как только вы сохраните этот файл у всех ссылок удалиться тег nofollow.</p>
<div id="crp_related"><ul><li><a href="http://www.wp-simple.ru/automatically-refuse-spam.html" rel="bookmark">Автоматическая защита от спама</a></li><li><a href="http://www.wp-simple.ru/function-words-count.html" rel="bookmark">Подсчет слов в статье</a></li><li><a href="http://www.wp-simple.ru/disable-message-in-wp-dashboard.html" rel="bookmark">Отключение сообщения "Пожалуйста обновитесь"</a></li><li><a href="http://www.wp-simple.ru/post-by-excerpts.html" rel="bookmark">Вывод укороченной новости</a></li><li><a href="http://www.wp-simple.ru/get-first-image-post.html" rel="bookmark">Вывод первого изображения поста</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.wp-simple.ru/automatically-remove-nofollow-from-posts.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
