<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>WordPress DK Forum Topic: Fra nofollow til dofollw- hvordan?</title>
		<link>http://wp-danmark.dk/forum/topic/fra-nofollow-til-dofollw-hvordan</link>
		<description>WordPress DK Forum Topic: Fra nofollow til dofollw- hvordan?</description>
		<language>da-DK</language>
		<pubDate>Sun, 27 Sep 2026 06:21:31 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Søg]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://wp-danmark.dk/forum/search.php</link>
		</textInput>
		<atom:link href="http://wp-danmark.dk/forum/rss/topic/fra-nofollow-til-dofollw-hvordan" rel="self" type="application/rss+xml" />

		<item>
			<title>Jesper Jarlskov om "Fra nofollow til dofollw- hvordan?"</title>
			<link>http://wp-danmark.dk/forum/topic/fra-nofollow-til-dofollw-hvordan#post-47622</link>
			<pubDate>søn, 19 maj 2013 14:05:09 +0000</pubDate>
			<dc:creator>Jesper Jarlskov</dc:creator>
			<guid isPermaLink="false">47622@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Er det standard at WordPress laver nofollow på interne links? Jeg troede kun det var på kommentarlinks, og mine egne blogs ser ikke ud til at gøre det.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rune123 om "Fra nofollow til dofollw- hvordan?"</title>
			<link>http://wp-danmark.dk/forum/topic/fra-nofollow-til-dofollw-hvordan#post-47621</link>
			<pubDate>søn, 19 maj 2013 13:45:17 +0000</pubDate>
			<dc:creator>rune123</dc:creator>
			<guid isPermaLink="false">47621@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Jeg skal ikke til at rode i mine koder. Det kan kun gå galt.&#60;/p&#62;
&#60;p&#62;De plugin der findes fjerner kun nofollow i kommentarfelterne og det har jeg ikke brug for. Jeg skal fjerne nofollow i mine tekster.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mark Thomas Gazel om "Fra nofollow til dofollw- hvordan?"</title>
			<link>http://wp-danmark.dk/forum/topic/fra-nofollow-til-dofollw-hvordan#post-47620</link>
			<pubDate>lør, 18 maj 2013 23:41:59 +0000</pubDate>
			<dc:creator>Mark Thomas Gazel</dc:creator>
			<guid isPermaLink="false">47620@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Jojo, men der er er et plugin.&#60;/p&#62;
&#60;p&#62;Normalt ville jeg ikke anbefale et plugin, men netop nofollow skabte meget furore, da det kom frem, men det er glemt nu,
&#60;/p&#62;</description>
		</item>
		<item>
			<title>René Skou om "Fra nofollow til dofollw- hvordan?"</title>
			<link>http://wp-danmark.dk/forum/topic/fra-nofollow-til-dofollw-hvordan#post-47619</link>
			<pubDate>lør, 18 maj 2013 20:58:38 +0000</pubDate>
			<dc:creator>René Skou</dc:creator>
			<guid isPermaLink="false">47619@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Hej rune123&#60;/p&#62;
&#60;p&#62;Jeg bruger normalt denne stump kode i min functions.php fil, den udskifter nofollow med dofollow eller tilføjer dofollow, hvis der ikke er nogen.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
function strip_nofollow($text = '') {&#60;br /&#62;
return preg_replace_callback(&#34;/&#38;lt;\s*a\s+(.+?)&#38;gt;/is&#34;, 'strip_nofollow_callback', $text); }&#60;/p&#62;
&#60;p&#62;function strip_nofollow_callback($match) {&#60;br /&#62;
$attr = $match[1];&#60;br /&#62;
$attr = &#34; $attr &#34;;&#60;br /&#62;
$attr = preg_replace(&#34;/&#60;br /&#62;
\s&#60;br /&#62;
rel\s*=\s*(['\&#34;])&#60;br /&#62;
([^\\1]*?\s+)?&#60;br /&#62;
nofollow&#60;br /&#62;
(\s+[^\\1]*?)?&#60;br /&#62;
\\1&#60;br /&#62;
/ix&#34;, &#34; rel=$1$2$3$1&#34;, $attr);&#60;br /&#62;
$attr = preg_replace(&#34;/&#60;br /&#62;
\s&#60;br /&#62;
rel\s*=\s*(['\&#34;])\s*\\1&#60;br /&#62;
/ix&#34;, '', $attr);&#60;br /&#62;
$attr = trim($attr);&#60;br /&#62;
return '&#60;a&#62;';&#60;br /&#62;
} add_filter('the_content', 'strip_nofollow', 15);&#60;br /&#62;
&#60;/code&#62;&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Mark Thomas Gazel om "Fra nofollow til dofollw- hvordan?"</title>
			<link>http://wp-danmark.dk/forum/topic/fra-nofollow-til-dofollw-hvordan#post-47616</link>
			<pubDate>lør, 18 maj 2013 18:56:37 +0000</pubDate>
			<dc:creator>Mark Thomas Gazel</dc:creator>
			<guid isPermaLink="false">47616@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Prøv at søge på &#34;dofollow&#34; og ikke &#34;dowfollow&#34; under tilføj plugins.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rune123 om "Fra nofollow til dofollw- hvordan?"</title>
			<link>http://wp-danmark.dk/forum/topic/fra-nofollow-til-dofollw-hvordan#post-47615</link>
			<pubDate>lør, 18 maj 2013 12:26:54 +0000</pubDate>
			<dc:creator>rune123</dc:creator>
			<guid isPermaLink="false">47615@http://wp-danmark.dk/forum/</guid>
			<description>&#60;p&#62;Jeg bruger min blog til interne links, men de bliver registreret som nowfollow hvilket er skidt. Er der nogen der ved hvordan man ændrer til dowfollow uden de store krumspring?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
