<?xml version="1.0" encoding="UTF-8"?><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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Adding Additional Links to the Output from wp_list_pages</title>
	<atom:link href="http://sivel.net/2009/03/adding-additional-links-to-the-output-from-wp_list_pages/feed/" rel="self" type="application/rss+xml" />
	<link>http://sivel.net/2009/03/adding-additional-links-to-the-output-from-wp_list_pages/</link>
	<description>Throwing Hot Coals</description>
	<lastBuildDate>Fri, 30 Dec 2011 00:37:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4-alpha-19719</generator>
	<item>
		<title>By: Local Business Success</title>
		<link>http://sivel.net/2009/03/adding-additional-links-to-the-output-from-wp_list_pages/#comment-7780</link>
		<dc:creator>Local Business Success</dc:creator>
		<pubDate>Wed, 13 Jan 2010 22:24:24 +0000</pubDate>
		<guid isPermaLink="false">http://sivel.net/?p=486#comment-7780</guid>
		<description>Exactly what I was looking for. I needed to add a link to a post category on my header and this worked great! Thanks!</description>
		<content:encoded><![CDATA[<p>Exactly what I was looking for. I needed to add a link to a post category on my header and this worked great! Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 20 Tipps zu den statischen Seiten in WordPress</title>
		<link>http://sivel.net/2009/03/adding-additional-links-to-the-output-from-wp_list_pages/#comment-6130</link>
		<dc:creator>20 Tipps zu den statischen Seiten in WordPress</dc:creator>
		<pubDate>Sat, 03 Oct 2009 15:21:32 +0000</pubDate>
		<guid isPermaLink="false">http://sivel.net/?p=486#comment-6130</guid>
		<description>[...] Links zu wp_list_pages 1 und [...]</description>
		<content:encoded><![CDATA[<p>[...] Links zu wp_list_pages 1 und [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 16 best practise Tipps: statische Seiten in WordPress</title>
		<link>http://sivel.net/2009/03/adding-additional-links-to-the-output-from-wp_list_pages/#comment-3049</link>
		<dc:creator>16 best practise Tipps: statische Seiten in WordPress</dc:creator>
		<pubDate>Thu, 30 Apr 2009 14:46:38 +0000</pubDate>
		<guid isPermaLink="false">http://sivel.net/?p=486#comment-3049</guid>
		<description>[...] zeigt M&#246;glichkeiten externe Links zu wp_list_pages - und es gibt einen 2. Artikel zu Thema. zu [...]</description>
		<content:encoded><![CDATA[<p>[...] zeigt M&#246;glichkeiten externe Links zu wp_list_pages &#8211; und es gibt einen 2. Artikel zu Thema. zu [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Add Links To WordPress List Pages &#124; Omelyn.com</title>
		<link>http://sivel.net/2009/03/adding-additional-links-to-the-output-from-wp_list_pages/#comment-2942</link>
		<dc:creator>Add Links To WordPress List Pages &#124; Omelyn.com</dc:creator>
		<pubDate>Mon, 13 Apr 2009 22:50:42 +0000</pubDate>
		<guid isPermaLink="false">http://sivel.net/?p=486#comment-2942</guid>
		<description>[...] have noticed the idea at Sivel.net    Share and [...]</description>
		<content:encoded><![CDATA[<p>[...] have noticed the idea at Sivel.net    Share and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chukki.de</title>
		<link>http://sivel.net/2009/03/adding-additional-links-to-the-output-from-wp_list_pages/#comment-2721</link>
		<dc:creator>Chukki.de</dc:creator>
		<pubDate>Thu, 02 Apr 2009 09:18:18 +0000</pubDate>
		<guid isPermaLink="false">http://sivel.net/?p=486#comment-2721</guid>
		<description>It&#039;s me again :)
I solved it in a way like this: 

add_filter(&#039;wp_list_pages&#039;, &#039;add_home_link&#039;);
function add_home_link($output) {
		$output = str_replace(&#039;&#039;,&#039;&lt;a href=&quot;http://de.aqualytic.de&quot; rel=&quot;nofollow&quot;&gt;News&lt;/a&gt;\n&#039;, $output);
        return $output;
}

It works very good. I searched for the position where i want to add the link and put it before it.</description>
		<content:encoded><![CDATA[<p>It&#8217;s me again :)<br />
I solved it in a way like this: </p>
<p>add_filter(&#8216;wp_list_pages&#8217;, &#8216;add_home_link&#8217;);<br />
function add_home_link($output) {<br />
		$output = str_replace(&#8221;,&#8217;<a href="http://de.aqualytic.de" rel="nofollow">News</a>\n&#8217;, $output);<br />
        return $output;<br />
}</p>
<p>It works very good. I searched for the position where i want to add the link and put it before it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chukki.de</title>
		<link>http://sivel.net/2009/03/adding-additional-links-to-the-output-from-wp_list_pages/#comment-2720</link>
		<dc:creator>Chukki.de</dc:creator>
		<pubDate>Thu, 02 Apr 2009 08:31:11 +0000</pubDate>
		<guid isPermaLink="false">http://sivel.net/?p=486#comment-2720</guid>
		<description>Nice code snippet...but do you have an idea how i can add a &quot;news&quot; link between two other pages?
I thought about a solution with str_replace... but maybe there is an easier way?

greets chukki</description>
		<content:encoded><![CDATA[<p>Nice code snippet&#8230;but do you have an idea how i can add a &#8220;news&#8221; link between two other pages?<br />
I thought about a solution with str_replace&#8230; but maybe there is an easier way?</p>
<p>greets chukki</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Add Links To WordPress List Pages - This, WordPress, Page, ‘Example, Example, Subpage - WP Engineer</title>
		<link>http://sivel.net/2009/03/adding-additional-links-to-the-output-from-wp_list_pages/#comment-2034</link>
		<dc:creator>Add Links To WordPress List Pages - This, WordPress, Page, ‘Example, Example, Subpage - WP Engineer</dc:creator>
		<pubDate>Tue, 10 Mar 2009 19:07:58 +0000</pubDate>
		<guid isPermaLink="false">http://sivel.net/?p=486#comment-2034</guid>
		<description>[...] I have noticed the idea at Sivel.net [...]</description>
		<content:encoded><![CDATA[<p>[...] I have noticed the idea at Sivel.net [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Statische Links zu WordPress Seiten hinzufügen - bueltge.de [by:ltge.de]</title>
		<link>http://sivel.net/2009/03/adding-additional-links-to-the-output-from-wp_list_pages/#comment-1911</link>
		<dc:creator>Statische Links zu WordPress Seiten hinzufügen - bueltge.de [by:ltge.de]</dc:creator>
		<pubDate>Tue, 03 Mar 2009 11:17:44 +0000</pubDate>
		<guid isPermaLink="false">http://sivel.net/?p=486#comment-1911</guid>
		<description>[...] Idee ist aufgefallen bei Sivel.net   Artikel #903, 3. M&#228;rz 2009 &#183; Tipps, WordPress &#183; 0 Kommentare   gelesen: 2 [...]</description>
		<content:encoded><![CDATA[<p>[...] Idee ist aufgefallen bei Sivel.net   Artikel #903, 3. M&auml;rz 2009 &middot; Tipps, WordPress &middot; 0 Kommentare   gelesen: 2 [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

