<?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"
	>
<channel>
	<title>Comments on: WordPress as a Content Management System for a Library Web Site: How to Create a Dynamically Generated Subject Guide</title>
	<atom:link href="http://journal.code4lib.org/articles/76/feed" rel="self" type="application/rss+xml" />
	<link>http://journal.code4lib.org/articles/76</link>
	<description></description>
	<pubDate>Thu, 04 Dec 2008 03:29:43 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: Jodi Schneider</title>
		<link>http://journal.code4lib.org/articles/76#comment-1089</link>
		<dc:creator>Jodi Schneider</dc:creator>
		<pubDate>Sun, 02 Nov 2008 14:31:28 +0000</pubDate>
		<guid isPermaLink="false">http://journal.code4lib.org/articles/76#comment-1089</guid>
		<description>Karen Coombs has also written recently about using WordPress for databases:
&lt;a href="http://www.librarywebchic.net/wordpress/2008/09/28/creating-database-lists-with-wordpress-link-tool/" rel="nofollow"&gt;http://www.librarywebchic.net/wordpress/2008/09/28/creating-database-lists-with-wordpress-link-tool/&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Karen Coombs has also written recently about using WordPress for databases:<br />
<a href="http://www.librarywebchic.net/wordpress/2008/09/28/creating-database-lists-with-wordpress-link-tool/" rel="nofollow">http://www.librarywebchic.net/wordpress/2008/09/28/creating-database-lists-with-wordpress-link-tool/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joshua Dodson</title>
		<link>http://journal.code4lib.org/articles/76#comment-970</link>
		<dc:creator>Joshua Dodson</dc:creator>
		<pubDate>Wed, 10 Sep 2008 00:40:29 +0000</pubDate>
		<guid isPermaLink="false">http://journal.code4lib.org/articles/76#comment-970</guid>
		<description>I submitted this a while back, but it must not have gone through. Please accept my apologies. 

Found By Design, I have had great luck with WP 2.6. To double check, you are using a variant of the following code:
&#60;h4&#62;Multidisciplinary&#60;/h4&#62;  
&#60;?php $my_query = new WP_Query(&#39;category_name=YOUR CATEGORY NAME HERE&#38;orderby=title&#38;order=asc&#38;showposts=100&#39;); while ($my_query-&#62;have_posts()) : $my_query-&#62;the_post(); $do_not_duplicate = $post-&#62;ID; ?&#62;   
&#60;?php the_title(); ?&#62;  
&#60;?php the_content(); ?&#62;  
&#60;?php endwhile; ?&#62;  

The library Web site I was working on when I wrote this article is now up. The subject guides can be found at the following url:
&lt;a href="http://library.lmunet.edu/databases" rel="nofollow"&gt;http://library.lmunet.edu/databases&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>I submitted this a while back, but it must not have gone through. Please accept my apologies. </p>
<p>Found By Design, I have had great luck with WP 2.6. To double check, you are using a variant of the following code:<br />
&lt;h4&gt;Multidisciplinary&lt;/h4&gt;<br />
&lt;?php $my_query = new WP_Query(&#39;category_name=YOUR CATEGORY NAME HERE&amp;orderby=title&amp;order=asc&amp;showposts=100&#39;); while ($my_query-&gt;have_posts()) : $my_query-&gt;the_post(); $do_not_duplicate = $post-&gt;ID; ?&gt;<br />
&lt;?php the_title(); ?&gt;<br />
&lt;?php the_content(); ?&gt;<br />
&lt;?php endwhile; ?&gt;  </p>
<p>The library Web site I was working on when I wrote this article is now up. The subject guides can be found at the following url:<br />
<a href="http://library.lmunet.edu/databases" rel="nofollow">http://library.lmunet.edu/databases</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Found By Design</title>
		<link>http://journal.code4lib.org/articles/76#comment-954</link>
		<dc:creator>Found By Design</dc:creator>
		<pubDate>Thu, 14 Aug 2008 13:54:42 +0000</pubDate>
		<guid isPermaLink="false">http://journal.code4lib.org/articles/76#comment-954</guid>
		<description>&lt;p&gt;ok, so my last comment did not post all the code, but it is using the&lt;br /&gt;
&lt;code&gt;$my_query = new WP_Query('category_name=MultidisciplinaryDB&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;method... just not working for me... is there something else that needs to be added?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>ok, so my last comment did not post all the code, but it is using the<br />
<code>$my_query = new WP_Query('category_name=MultidisciplinaryDB</code></p>
<p>method&#8230; just not working for me&#8230; is there something else that needs to be added?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Found By Design</title>
		<link>http://journal.code4lib.org/articles/76#comment-953</link>
		<dc:creator>Found By Design</dc:creator>
		<pubDate>Thu, 14 Aug 2008 13:53:07 +0000</pubDate>
		<guid isPermaLink="false">http://journal.code4lib.org/articles/76#comment-953</guid>
		<description>Are you finding the code to work with the newest version of Wordpress?
I used a verison of this code below and it showed ALL posts, not just the one category...

have_posts()) : $my_query-&#62;the_post(); $do_not_duplicate = $post-&#62;ID; ?&#62; 

I am using WP2.6. 
Thanks</description>
		<content:encoded><![CDATA[<p>Are you finding the code to work with the newest version of Wordpress?<br />
I used a verison of this code below and it showed ALL posts, not just the one category&#8230;</p>
<p>have_posts()) : $my_query-&gt;the_post(); $do_not_duplicate = $post-&gt;ID; ?&gt; </p>
<p>I am using WP2.6.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bhushan</title>
		<link>http://journal.code4lib.org/articles/76#comment-951</link>
		<dc:creator>Bhushan</dc:creator>
		<pubDate>Mon, 04 Aug 2008 12:48:02 +0000</pubDate>
		<guid isPermaLink="false">http://journal.code4lib.org/articles/76#comment-951</guid>
		<description>Dear Joshua Dodson

this is very good article for me, anyway there good number of content management around, but wordpress has its own features</description>
		<content:encoded><![CDATA[<p>Dear Joshua Dodson</p>
<p>this is very good article for me, anyway there good number of content management around, but wordpress has its own features</p>
]]></content:encoded>
	</item>
</channel>
</rss>
