<?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: List Subpages Plugin for WordPress</title>
	<atom:link href="http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/</link>
	<description>WordPress Plugins, PHP Scripts, Tools, and Tutorials</description>
	<lastBuildDate>Thu, 18 Mar 2010 06:00:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Anreas Hoop</title>
		<link>http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/comment-page-3/#comment-506644</link>
		<dc:creator>Anreas Hoop</dc:creator>
		<pubDate>Mon, 22 Feb 2010 21:29:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/#comment-506644</guid>
		<description>It&#039;s excellent, but is it going to work on my new iMac??? ;-)</description>
		<content:encoded><![CDATA[<p>It&#8217;s excellent, but is it going to work on my new iMac??? <img src='http://www.dagondesign.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/comment-page-3/#comment-505708</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Sun, 07 Feb 2010 18:58:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/#comment-505708</guid>
		<description>I wanted to pass the options for the list specifically from the function in the template so I modified the head of ddlsp_generate:


function ddlsp_generate($options = array()) {
	if(!isset($options[&#039;before_list&#039;])){
		$before_list = get_option(&#039;ddlsp_before_list&#039;);
	}
	if(!isset($options[&#039;after_list&#039;])){
	$after_list = get_option(&#039;ddlsp_after_list&#039;);
	}
	if(!isset($options[&#039;sort_column&#039;])){
	$sort_column = get_option(&#039;ddlsp_sort_column&#039;);
	}
	if(!isset($options[&#039;sort_order&#039;])){
	$sort_order = get_option(&#039;ddlsp_sort_order&#039;);
	}
	if(!isset($options[&#039;exclude&#039;])){
	$exclude = get_option(&#039;ddlsp_exclude&#039;);
	}
	if(!isset($options[&#039;include&#039;])){
	$include = get_option(&#039;ddlsp_include&#039;);
	}
	if(!isset($options[&#039;depth&#039;])){
	$depth = get_option(&#039;ddlsp_depth&#039;);
	}
	if(!isset($options[&#039;show_date&#039;])){
	$show_date = get_option(&#039;ddlsp_show_date&#039;);
	}
	if(!isset($options[&#039;date_format&#039;])){
	$date_format = get_option(&#039;ddlsp_date_format&#039;);
	}
	if(!isset($options[&#039;title_li&#039;])){
	$title_li = get_option(&#039;ddlsp_title_li&#039;);
	}
///
THere is probably a less redundant way to write this
///
And now you can call it from the template with 

false)); ?&gt;
passing to the array any of the startup options</description>
		<content:encoded><![CDATA[<p>I wanted to pass the options for the list specifically from the function in the template so I modified the head of ddlsp_generate:</p>
<p>function ddlsp_generate($options = array()) {<br />
	if(!isset($options['before_list'])){<br />
		$before_list = get_option(&#8216;ddlsp_before_list&#8217;);<br />
	}<br />
	if(!isset($options['after_list'])){<br />
	$after_list = get_option(&#8216;ddlsp_after_list&#8217;);<br />
	}<br />
	if(!isset($options['sort_column'])){<br />
	$sort_column = get_option(&#8216;ddlsp_sort_column&#8217;);<br />
	}<br />
	if(!isset($options['sort_order'])){<br />
	$sort_order = get_option(&#8216;ddlsp_sort_order&#8217;);<br />
	}<br />
	if(!isset($options['exclude'])){<br />
	$exclude = get_option(&#8216;ddlsp_exclude&#8217;);<br />
	}<br />
	if(!isset($options['include'])){<br />
	$include = get_option(&#8216;ddlsp_include&#8217;);<br />
	}<br />
	if(!isset($options['depth'])){<br />
	$depth = get_option(&#8216;ddlsp_depth&#8217;);<br />
	}<br />
	if(!isset($options['show_date'])){<br />
	$show_date = get_option(&#8216;ddlsp_show_date&#8217;);<br />
	}<br />
	if(!isset($options['date_format'])){<br />
	$date_format = get_option(&#8216;ddlsp_date_format&#8217;);<br />
	}<br />
	if(!isset($options['title_li'])){<br />
	$title_li = get_option(&#8216;ddlsp_title_li&#8217;);<br />
	}<br />
///<br />
THere is probably a less redundant way to write this<br />
///<br />
And now you can call it from the template with </p>
<p>false)); ?&gt;<br />
passing to the array any of the startup options</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Horst</title>
		<link>http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/comment-page-3/#comment-504545</link>
		<dc:creator>Horst</dc:creator>
		<pubDate>Wed, 20 Jan 2010 17:26:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/#comment-504545</guid>
		<description>Hey, thanks a lot for this plugin. It is exactly what I was looking for. Little input for future versions: it would be very nice, to integrate little thumbnails of pictures according to the particular subpages.</description>
		<content:encoded><![CDATA[<p>Hey, thanks a lot for this plugin. It is exactly what I was looking for. Little input for future versions: it would be very nice, to integrate little thumbnails of pictures according to the particular subpages.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Debbie</title>
		<link>http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/comment-page-3/#comment-504281</link>
		<dc:creator>Debbie</dc:creator>
		<pubDate>Sun, 17 Jan 2010 18:28:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/#comment-504281</guid>
		<description>This is a great little plugin, thank you!</description>
		<content:encoded><![CDATA[<p>This is a great little plugin, thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lisa</title>
		<link>http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/comment-page-3/#comment-501667</link>
		<dc:creator>Lisa</dc:creator>
		<pubDate>Mon, 07 Dec 2009 15:48:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/#comment-501667</guid>
		<description>Hi, I just wanted to thank you. A few of your plugins have been EXACTLY what I was looking for. This plug in especially. Thank you VERY much, and keep up the good work.</description>
		<content:encoded><![CDATA[<p>Hi, I just wanted to thank you. A few of your plugins have been EXACTLY what I was looking for. This plug in especially. Thank you VERY much, and keep up the good work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ty</title>
		<link>http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/comment-page-3/#comment-501133</link>
		<dc:creator>ty</dc:creator>
		<pubDate>Mon, 30 Nov 2009 13:44:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/#comment-501133</guid>
		<description>Anyone know where to put the code in answer 105? I really need this.

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Anyone know where to put the code in answer 105? I really need this.</p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: William Lindley</title>
		<link>http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/comment-page-3/#comment-496012</link>
		<dc:creator>William Lindley</dc:creator>
		<pubDate>Sun, 27 Sep 2009 18:02:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/#comment-496012</guid>
		<description>If you would like to display a table of thumbnails for the child page, you might look into this plugin --

http://wordpress.org/extend/plugins/autonav</description>
		<content:encoded><![CDATA[<p>If you would like to display a table of thumbnails for the child page, you might look into this plugin &#8211;</p>
<p><a href="http://wordpress.org/extend/plugins/autonav" rel="nofollow">http://wordpress.org/extend/plugins/autonav</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Howells-Mead</title>
		<link>http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/comment-page-3/#comment-494156</link>
		<dc:creator>Mark Howells-Mead</dc:creator>
		<pubDate>Wed, 09 Sep 2009 14:23:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/#comment-494156</guid>
		<description>Great stuff, been using it for a while now. One thing: I&#039;ve customized my version to add the sort option &quot;&lt;code&gt;menu_order,post_title&lt;/code&gt;&quot;: the default setting for wp_list_pages, I think, and one which makes a lot of sense. This could be a useful addition to a new version.</description>
		<content:encoded><![CDATA[<p>Great stuff, been using it for a while now. One thing: I&#8217;ve customized my version to add the sort option &#8220;<code>menu_order,post_title</code>&#8220;: the default setting for wp_list_pages, I think, and one which makes a lot of sense. This could be a useful addition to a new version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/comment-page-3/#comment-491837</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Tue, 25 Aug 2009 18:20:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/#comment-491837</guid>
		<description>Great plugin, seem to have problems getting it to work with permalinks - is there an error?</description>
		<content:encoded><![CDATA[<p>Great plugin, seem to have problems getting it to work with permalinks &#8211; is there an error?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hola</title>
		<link>http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/comment-page-3/#comment-491531</link>
		<dc:creator>hola</dc:creator>
		<pubDate>Tue, 25 Aug 2009 02:48:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/#comment-491531</guid>
		<description>it&#039;s GREAT !!!

Thanksss !!!!</description>
		<content:encoded><![CDATA[<p>it&#8217;s GREAT !!!</p>
<p>Thanksss !!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ataraxy</title>
		<link>http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/comment-page-3/#comment-490983</link>
		<dc:creator>Ataraxy</dc:creator>
		<pubDate>Fri, 21 Aug 2009 05:01:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/#comment-490983</guid>
		<description>&quot;The only suggestion I have is to have it show on the subpage as well as the page that has child pages.&quot;

I agree with this. I came across this plugin and it does nearly everything I was looking for, except that. Now I&#039;m trying to figure out how to modify it to do that.

Thanks for the plugin!</description>
		<content:encoded><![CDATA[<p>&#8220;The only suggestion I have is to have it show on the subpage as well as the page that has child pages.&#8221;</p>
<p>I agree with this. I came across this plugin and it does nearly everything I was looking for, except that. Now I&#8217;m trying to figure out how to modify it to do that.</p>
<p>Thanks for the plugin!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vanni</title>
		<link>http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/comment-page-3/#comment-490655</link>
		<dc:creator>vanni</dc:creator>
		<pubDate>Sun, 16 Aug 2009 21:47:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/#comment-490655</guid>
		<description>Hi. I&#039;m a WP newbie, I am looking for a way to have sub-pages that are connected to a specific page, and i think this plugin allows this.  I want to be able to display the links of the sub-pages in the left-hand column and keep them all visible as i visit each of the sub-pages. For eg. see this page at this WP site: 
http://www.joyent.com/products/publiccloud/

Can i expect your plug-in to accomplish this?</description>
		<content:encoded><![CDATA[<p>Hi. I&#8217;m a WP newbie, I am looking for a way to have sub-pages that are connected to a specific page, and i think this plugin allows this.  I want to be able to display the links of the sub-pages in the left-hand column and keep them all visible as i visit each of the sub-pages. For eg. see this page at this WP site:<br />
<a href="http://www.joyent.com/products/publiccloud/" rel="nofollow">http://www.joyent.com/products/publiccloud/</a></p>
<p>Can i expect your plug-in to accomplish this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jan</title>
		<link>http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/comment-page-3/#comment-489751</link>
		<dc:creator>Jan</dc:creator>
		<pubDate>Thu, 13 Aug 2009 23:14:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/#comment-489751</guid>
		<description>This is a fantastic little plugin. The only suggestion I have is to have it show on the subpage as well as the page that has child pages.</description>
		<content:encoded><![CDATA[<p>This is a fantastic little plugin. The only suggestion I have is to have it show on the subpage as well as the page that has child pages.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Futures Electronic Trading</title>
		<link>http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/comment-page-3/#comment-484541</link>
		<dc:creator>Futures Electronic Trading</dc:creator>
		<pubDate>Fri, 24 Jul 2009 01:18:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/#comment-484541</guid>
		<description>Thank you for making available a superb plugin that is easy to install and very functional in getting the job done. Much appreciated.</description>
		<content:encoded><![CDATA[<p>Thank you for making available a superb plugin that is easy to install and very functional in getting the job done. Much appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Admin</title>
		<link>http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/comment-page-3/#comment-484122</link>
		<dc:creator>Admin</dc:creator>
		<pubDate>Thu, 16 Jul 2009 01:34:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/#comment-484122</guid>
		<description>Currently there is no support for displaying anything but the links to the pages. I will keep those ideas in mind though. 

I do get a lot of requests for features on all my scripts, and unfortunately I am not able to implement everything.</description>
		<content:encoded><![CDATA[<p>Currently there is no support for displaying anything but the links to the pages. I will keep those ideas in mind though. </p>
<p>I do get a lot of requests for features on all my scripts, and unfortunately I am not able to implement everything.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jessy</title>
		<link>http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/comment-page-3/#comment-484094</link>
		<dc:creator>Jessy</dc:creator>
		<pubDate>Wed, 15 Jul 2009 14:49:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/#comment-484094</guid>
		<description>Is there a possibility to display one of the custum fields in each list item after the link?

something like:
&lt;code&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;&quot;&gt;page1&lt;/a&gt; - value custom field of page 1
&lt;li&gt;&lt;a href=&quot;&quot;&gt;page2&lt;/a&gt; - value custom field of page 2
&lt;li&gt;&lt;a href=&quot;&quot;&gt;page2&lt;/a&gt; - value custom field of page 3
&lt;/ul&gt;
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Is there a possibility to display one of the custum fields in each list item after the link?</p>
<p>something like:<br />
<pre><code>
&lt;ul&gt;
&lt;li&gt;&lt;a href=""&gt;page1&lt;/a&gt; - value custom field of page 1
&lt;li&gt;&lt;a href=""&gt;page2&lt;/a&gt; - value custom field of page 2
&lt;li&gt;&lt;a href=""&gt;page2&lt;/a&gt; - value custom field of page 3
&lt;/ul&gt;
</code></pre></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sebastian Cruz</title>
		<link>http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/comment-page-3/#comment-483807</link>
		<dc:creator>Sebastian Cruz</dc:creator>
		<pubDate>Sun, 12 Jul 2009 21:10:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/#comment-483807</guid>
		<description>Hi, great plugin! is there a way to insert thumbnails in the list of the subpages?? thanks!</description>
		<content:encoded><![CDATA[<p>Hi, great plugin! is there a way to insert thumbnails in the list of the subpages?? thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Admin</title>
		<link>http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/comment-page-3/#comment-482704</link>
		<dc:creator>Admin</dc:creator>
		<pubDate>Wed, 08 Jul 2009 01:10:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/#comment-482704</guid>
		<description>&lt;strong&gt;This plugin has been tested, and works, in the latest release of WordPress - 2.8&lt;/strong&gt;

A few comments below mentioned displaying the sub-list during other events, but the purpose of the plugin is simply do display the child pages of the currently viewed page only. I will consider ideas for future updates though.</description>
		<content:encoded><![CDATA[<p><strong>This plugin has been tested, and works, in the latest release of WordPress &#8211; 2.8</strong></p>
<p>A few comments below mentioned displaying the sub-list during other events, but the purpose of the plugin is simply do display the child pages of the currently viewed page only. I will consider ideas for future updates though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lindamood bell</title>
		<link>http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/comment-page-3/#comment-482668</link>
		<dc:creator>lindamood bell</dc:creator>
		<pubDate>Tue, 07 Jul 2009 11:06:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/#comment-482668</guid>
		<description>hi nice article list great work and thanks for u sear this with us</description>
		<content:encoded><![CDATA[<p>hi nice article list great work and thanks for u sear this with us</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul Parenko</title>
		<link>http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/comment-page-3/#comment-480646</link>
		<dc:creator>Paul Parenko</dc:creator>
		<pubDate>Sat, 13 Jun 2009 23:52:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.dagondesign.com/articles/list-subpages-plugin-for-wordpress/#comment-480646</guid>
		<description>This is how to get the whole children list, please add this as an example!

post_parent){
	// will display the children of this top site
	$children = wp_list_pages(&quot;title_li=&amp;child_of=&quot;.$post-&gt;ID.&quot;&amp;echo=0&quot;);
}else{
	// diplays only the children of 
	//$children = wp_list_pages(&quot;title_li=&amp;child_of=&quot;.$post-&gt;post_parent.&quot;&amp;echo=0&quot;);
	
	if($post-&gt;ancestors)
	{
		// now you can get the the top ID of this site
		// wp is putting the ids DESC, thats why the top ID is the last one
		$ancestors = end($post-&gt;ancestors);
		$children = wp_list_pages(&quot;title_li=&amp;child_of=&quot;.$ancestors.&quot;&amp;echo=0&quot;);
		// you will always get the whole child list
	}
}

if ($children) { ?&gt;
	
		
	
</description>
		<content:encoded><![CDATA[<p>This is how to get the whole children list, please add this as an example!</p>
<p>post_parent){<br />
	// will display the children of this top site<br />
	$children = wp_list_pages(&#8220;title_li=&amp;child_of=&#8221;.$post-&gt;ID.&#8221;&amp;echo=0&#8243;);<br />
}else{<br />
	// diplays only the children of<br />
	//$children = wp_list_pages(&#8220;title_li=&amp;child_of=&#8221;.$post-&gt;post_parent.&#8221;&amp;echo=0&#8243;);</p>
<p>	if($post-&gt;ancestors)<br />
	{<br />
		// now you can get the the top ID of this site<br />
		// wp is putting the ids DESC, thats why the top ID is the last one<br />
		$ancestors = end($post-&gt;ancestors);<br />
		$children = wp_list_pages(&#8220;title_li=&amp;child_of=&#8221;.$ancestors.&#8221;&amp;echo=0&#8243;);<br />
		// you will always get the whole child list<br />
	}<br />
}</p>
<p>if ($children) { ?&gt;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
