<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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>whoismanu.com - Forum &#187; Tag: template - Recent Posts</title>
		<link>http://www.whoismanu.com/forum/tags/template</link>
		<description>Just another bbPress community</description>
		<language>en-US</language>
		<pubDate>Thu, 09 Feb 2012 12:31:10 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.whoismanu.com/forum/search.php</link>
		</textInput>
		<atom:link href="http://www.whoismanu.com/forum/rss/tags/template" rel="self" type="application/rss+xml" />

		<item>
			<title>michaelserisier on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-1296</link>
			<pubDate>Sun, 20 Feb 2011 17:18:51 +0000</pubDate>
			<dc:creator>michaelserisier</dc:creator>
			<guid isPermaLink="false">1296@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;@azie, whoismanu's suggestion to add this line in iq2/classes/IQ2Theme.php fixes the problem:&#60;br /&#62;
add_filter('the_content_feed', array(&#38;amp;$this, 'addDescrToFeed'));&#60;/p&#62;
&#60;p&#62;I've added it right after the &#34;//add description to feeds&#34; comment.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>azie on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-1289</link>
			<pubDate>Fri, 28 Jan 2011 18:40:52 +0000</pubDate>
			<dc:creator>azie</dc:creator>
			<guid isPermaLink="false">1289@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Hello dawilson!&#60;/p&#62;
&#60;p&#62;Could you please clarify as to what fixed your problem?  I'm having the same issue as well.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dawilson on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-1270</link>
			<pubDate>Wed, 29 Dec 2010 15:47:14 +0000</pubDate>
			<dc:creator>dawilson</dc:creator>
			<guid isPermaLink="false">1270@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Checking the feed this morning, I see that something I did on Sunday did, finally, correct the problem and I now have both the large image and the description in the &#38;lt;content:encoded&#38;gt; section of each RSS feed item. Thanks for your previous help and apologies for the false alarm this time round (though you may like to see if the change I made needs to be included in future IQ2 releases, I suppose).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dawilson on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-1269</link>
			<pubDate>Mon, 27 Dec 2010 02:13:31 +0000</pubDate>
			<dc:creator>dawilson</dc:creator>
			<guid isPermaLink="false">1269@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;It's time for my annual &#34;Try to fix my RSS feed&#34; day again. I've just updated everything to the latest version (Wordpress 3.0.3, PhotoQ 1.9, IQ2 1.3) hoping that my previous problem would go away but, unfortunately, my post description is still not included in the &#38;lt;content:encoded&#38;gt; section of each post's RSS item. Delving through the PHP for WordPress itself, I have absolutely no idea why this should be. I've made some changes to the IQ2Theme.php file for debug as follows:&#60;/p&#62;
&#60;p&#62;	`//add description to feeds&#60;br /&#62;
	add_filter('the_content_feed', array(&#38;amp;$this, 'addDescrToFeed'));&#60;br /&#62;
	add_filter('the_excerpt_rss', array(&#38;amp;$this, 'addDescrToFeedExcerpt'));`&#60;/p&#62;
&#60;p&#62;  The first add_filter used &#34;the_content_rss&#34; initially but I gather this is now deprecated in favour of &#34;the_content_feed&#34;. Even after changing this, I see no difference (though, frankly, I'm not convinced that FeedBurner's refresh is working properly so I'll check again in an hour or so). I also doubled up the addDescToFeed function so that I can tell exactly which hook is being called:&#60;/p&#62;
&#60;p&#62;	`/**&#60;br /&#62;
	 * Filter hook to add the description to the RSS feeds&#60;br /&#62;
	 * @param $content&#60;br /&#62;
	 * @return unknown_type&#60;br /&#62;
	 */&#60;br /&#62;
	function addDescrToFeed($content){&#60;br /&#62;
		global $post;&#60;br /&#62;
		/* if($this-&#38;gt;_oc-&#38;gt;getValue('feedShowDescr')){ */&#60;br /&#62;
			$content .= &#34;&#38;lt;!-- addDescrToFeed --&#38;gt;&#34;;&#60;br /&#62;
			$content .= get_post_meta($post-&#38;gt;ID, 'photoQDescr', true);&#60;br /&#62;
		/* } */&#60;br /&#62;
    	return $content;&#60;br /&#62;
	}&#60;br /&#62;
	function addDescrToFeedExcerpt($content){&#60;br /&#62;
		global $post;&#60;br /&#62;
		if($this-&#38;gt;_oc-&#38;gt;getValue('feedShowDescr')){&#60;br /&#62;
			$content .= &#34;&#38;lt;!-- addDescrToFeedExcerpt --&#38;gt;&#34;;&#60;br /&#62;
			$content .= get_post_meta($post-&#38;gt;ID, 'photoQDescr', true);&#60;br /&#62;
		}&#60;br /&#62;
    	return $content;&#60;br /&#62;
	}`&#60;/p&#62;
&#60;p&#62;Looking at the XML generated for my feed, I see that the addDescrToFeedExcerpt filter was called to fill in the &#38;lt;description&#38;gt; block but that the addDescToFeed filter was never called when &#38;lt;content:encoded&#38;gt; was set up. The code in WordPress's feed.php which I presume is called to generate this block (isn't &#34;grep&#34; a wonderful debugging tool?) calls:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;return apply_filters(&#38;#39;the_content_feed&#38;#39;, $content, $feed_type);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;so I can't see why our filter isn't being used. Any ideas?&#60;/p&#62;
&#60;p&#62;Any help you can offer on this would be excellent since this is really driving me mad. How difficult can it be to get the description text to appear underneath the full resolution photo in the RSS feed?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dawilson on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-774</link>
			<pubDate>Sun, 07 Feb 2010 06:14:16 +0000</pubDate>
			<dc:creator>dawilson</dc:creator>
			<guid isPermaLink="false">774@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Thanks for the suggestion. I've made the change and turned off my FeedBurner routing plugin but am having some problems getting hold of the raw feed data. Both IE and Firefox insist on giving me the cached Feedburner version of the feed so I can't see the raw RSS data any more (FeedProxy barfs on the stream formatting that FeedBurner generates). I'll try again tomorrow and see if I can figure out how to completely disable FeedBurner again.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>whoismanu on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-765</link>
			<pubDate>Wed, 03 Feb 2010 21:40:41 +0000</pubDate>
			<dc:creator>whoismanu</dc:creator>
			<guid isPermaLink="false">765@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;think i found the culprit. does it work if you replace 'the_content_rss' with 'the_content_feed' ?&#60;/p&#62;
&#60;p&#62;i.e. &#60;code&#62;add_filter(&#38;#39;the_content_feed&#38;#39;, array(&#38;amp;$this, &#38;#39;addDescrToFeed&#38;#39;));&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dawilson on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-758</link>
			<pubDate>Sun, 31 Jan 2010 02:59:11 +0000</pubDate>
			<dc:creator>dawilson</dc:creator>
			<guid isPermaLink="false">758@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;I've finally had some time to go back and look into the RSS feed problem once again. To recap, I want to make sure that the description text I enter for each photo is included in the RSS feed such that the feed shown in Google Reader contains the full sized image and the description text. As things stand today, all I get is the image with no text.&#60;/p&#62;
&#60;p&#62;The problem seems to be that the description text needs to be included in the &#38;lt;content:encoded&#38;gt; section of the feed as well as in the &#38;lt;description&#38;gt; block. I've tracked down where the RSS feed is generated (wp-includes/feed-rss2.php) but this seems OK to me - the &#38;lt;content:encoded&#38;gt; section is built from the_content() if I have RSS excerpting turned off. Looking at the database, however, I see that post_content contains only the image URL (hence explaining why that's all I see in the &#38;lt;content:encoded&#38;gt; section of my RSS feed). The entry does contain class=&#34;photoQcontent photoQImg&#34; and I suspect this is somehow intended to be expanded somewhere. I can't see any reference to this class in the stylesheet, though, so I'm at a loss to figure out what it is doing. In the post_excerpt database field, I see class=&#34;photoQexcerpt photoQImg&#34; and, looking at the raw RSS feed, this appears to be expanded to include the description text somehow.&#60;/p&#62;
&#60;p&#62;Could you offer any advice on what's going on here so that I can make some more progress? Apologies if these are annoying questions - despite 30 years of professional C programming, I'm a newbie at PHP and know nothing at all about the guts of WordPress - but I assumed this would be an easy thing to do when I started looking at the problem!&#60;/p&#62;
&#60;p&#62;Thanks in advance!&#60;/p&#62;
&#60;p&#62;&#38;lt;Edit - looking through IQ2Theme.php, I see:&#60;/p&#62;
&#60;p&#62;		//add description to feeds&#60;br /&#62;
		add_filter('the_content_rss', array(&#38;amp;$this, 'addDescrToFeed'));&#60;br /&#62;
		add_filter('the_excerpt_rss', array(&#38;amp;$this, 'addDescrToFeed'));&#60;/p&#62;
&#60;p&#62;which looks to me as if you are trying to add the description text to both the excerpt and content when generating the RSS feed. Why, I wonder, does the text end up in one but not the other?&#38;gt;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>whoismanu on "Use On Pages Not Posts?"</title>
			<link>http://www.whoismanu.com/forum/topic/use-on-pages-not-posts#post-540</link>
			<pubDate>Fri, 30 Oct 2009 13:38:47 +0000</pubDate>
			<dc:creator>whoismanu</dc:creator>
			<guid isPermaLink="false">540@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;well there is, via the archive.php (not archives.php) category template. see e.g. &#60;a href=&#34;http://www.whoismanu.com/iq2-demo/?cat=6&#34; rel=&#34;nofollow&#34;&#62;http://www.whoismanu.com/iq2-demo/?cat=6&#60;/a&#62; on the iq2 demo. that's the category page for category id 6 (=landscape).&#60;/p&#62;
&#60;p&#62;and yes, i guess what you need to do is exactly copy this one, rename as explained in the codex post to match your category id and add the custom stuff you want in your category.&#60;br /&#62;
if you go with these category templates you should not need to handcraft any queries.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jimzippy on "Use On Pages Not Posts?"</title>
			<link>http://www.whoismanu.com/forum/topic/use-on-pages-not-posts#post-539</link>
			<pubDate>Thu, 29 Oct 2009 18:30:20 +0000</pubDate>
			<dc:creator>jimzippy</dc:creator>
			<guid isPermaLink="false">539@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Also,&#60;/p&#62;
&#60;p&#62;there is no category page in the iQ2 Theme - is this something i must create? is it just the archive page copied, re-named and the theme page name written in the code at the top?&#60;/p&#62;
&#60;p&#62;hope that makes sense, i'm sure this is a simple thing i'm just not seeing it.&#60;/p&#62;
&#60;p&#62;Thanks&#60;/p&#62;
&#60;p&#62;James
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jimzippy on "Use On Pages Not Posts?"</title>
			<link>http://www.whoismanu.com/forum/topic/use-on-pages-not-posts#post-538</link>
			<pubDate>Thu, 29 Oct 2009 18:26:26 +0000</pubDate>
			<dc:creator>jimzippy</dc:creator>
			<guid isPermaLink="false">538@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;What i can't work out is how to pass the &#34;include&#34; or &#34;exclude&#34; values through your query - it looks different to anything i've worked with before pos due to the use of classes in $iQ2Theme.&#60;/p&#62;
&#60;p&#62;Do you know what i need to put in the query below to pull data/posts from a single category?&#60;/p&#62;
&#60;p&#62;if (is_category() &#124;&#124; is_archive()) { $posts = query_posts($query_string .'&#38;amp;'. $iQ2Theme-&#38;gt;getPagedArchiveQuery()); }&#60;/p&#62;
&#60;p&#62;I think i'll still be left with the issue of the main post (text) overiding the query - but i'll cross that bridge next.&#60;/p&#62;
&#60;p&#62;Thanks&#60;/p&#62;
&#60;p&#62;James
&#60;/p&#62;</description>
		</item>
		<item>
			<title>whoismanu on "Use On Pages Not Posts?"</title>
			<link>http://www.whoismanu.com/forum/topic/use-on-pages-not-posts#post-532</link>
			<pubDate>Wed, 28 Oct 2009 08:43:55 +0000</pubDate>
			<dc:creator>whoismanu</dc:creator>
			<guid isPermaLink="false">532@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;hi,&#60;/p&#62;
&#60;p&#62;i think you might be able to do sth like this with a category template. read here for details: &#60;a href=&#34;http://codex.wordpress.org/Category_Templates&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Category_Templates&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;the photoq file that shows categories is archive.php&#60;/p&#62;
&#60;p&#62;hope this helps
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jimzippy on "Use On Pages Not Posts?"</title>
			<link>http://www.whoismanu.com/forum/topic/use-on-pages-not-posts#post-524</link>
			<pubDate>Sun, 25 Oct 2009 22:51:22 +0000</pubDate>
			<dc:creator>jimzippy</dc:creator>
			<guid isPermaLink="false">524@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Just an update to this question...&#60;/p&#62;
&#60;p&#62;I've been playing around with this a bit and the main issue seems to be when i duplicate the archive page and rip some code from the page.php page (to combine theme) that the main post text over rides all the photoQ side, so rather than a series of thumbs i get a duplicate of the main text - i'm guessing this is due to the way the query is run to fetch the data - but that's where my knowledge of WordPress ends.&#60;/p&#62;
&#60;p&#62;I require the page to fetch the main page post text from the (WP set theme) page called &#34;wedding photos&#34;, then on the same page fetch all the posts (photoQ posts) from the post category called &#34;wedding photos&#34;...&#60;/p&#62;
&#60;p&#62;sorry for the continuous posts - having a bored Sunday and this has me puzzled!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jimzippy on "Use On Pages Not Posts?"</title>
			<link>http://www.whoismanu.com/forum/topic/use-on-pages-not-posts#post-523</link>
			<pubDate>Sun, 25 Oct 2009 21:07:49 +0000</pubDate>
			<dc:creator>jimzippy</dc:creator>
			<guid isPermaLink="false">523@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Thought i'd add a bit more detail...&#60;/p&#62;
&#60;p&#62;What i'm trying to achieve is: a different gallery thumb page for each of my gallery sections - similar to the &#34;photos&#34; page in the iQ2 demo page &#60;a href=&#34;http://www.whoismanu.com/iq2-demo/&#34; rel=&#34;nofollow&#34;&#62;http://www.whoismanu.com/iq2-demo/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;but rather than just a single &#34;photos&#34; page, i'd like a dedicated &#34;wedding photos&#34; page, &#34;fashion photos&#34; page, etc. This is because i'd like to have different supporting text on those pages. &#60;/p&#62;
&#60;p&#62;looking at the source for the theme i can see that the archive pulls all photos so i'm guessing there must be away to select a specific category only and duplicate the archive page as required???&#60;/p&#62;
&#60;p&#62;any help would be great, thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jimzippy on "Use On Pages Not Posts?"</title>
			<link>http://www.whoismanu.com/forum/topic/use-on-pages-not-posts#post-522</link>
			<pubDate>Sun, 25 Oct 2009 20:46:38 +0000</pubDate>
			<dc:creator>jimzippy</dc:creator>
			<guid isPermaLink="false">522@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Hi, is there a setting where i can select to use the PhotoQ system on pages not posts?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dawilson on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-499</link>
			<pubDate>Tue, 06 Oct 2009 02:46:56 +0000</pubDate>
			<dc:creator>dawilson</dc:creator>
			<guid isPermaLink="false">499@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;It turns out that I was still using the old version of IQ2 - oops! Having switched to the new version, I can now tell the system to include the description in the RSS feed and, when I view the feed in Firefox, the text is there. Unfortunately, however, the feed seen via Google Reader still contains only the large image and no text. I think I'll give up on this one now and move to another problem (which I will post to a new thread). Thanks for all the help on this, though.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>whoismanu on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-476</link>
			<pubDate>Tue, 29 Sep 2009 23:02:09 +0000</pubDate>
			<dc:creator>whoismanu</dc:creator>
			<guid isPermaLink="false">476@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;to add the description text you will find a setting called &#34;Syndication Feeds: Show photo description in syndication feeds.&#34; under &#34;Appearance-&#38;gt;iQ2 Settings&#34;. just check the corresponding box and your feeds should show the description (iQ2 1.1 or newer).&#60;/p&#62;
&#60;p&#62;to show the main image instead of the one from the excerpt is i guess rather a wp problem. first, you need to make sure that your wp settings under &#34;reading-&#38;gt;For each article in a feed, show&#34; are set to show the full text.&#60;/p&#62;
&#60;p&#62;however, this whole thing can be more tricky than that because it looks like what you see might be browser specific (i.e. especially in ff these settings are not necessarily taken into account). the following link gives an explanation (i fear however that the hack proposed might be outdated and doesn't apply to the newer wp versions anymore): &#60;a href=&#34;http://www.devilsworkshop.org/force-firefox-to-display-your-full-feeds-wordpress-hack/&#34; rel=&#34;nofollow&#34;&#62;http://www.devilsworkshop.org/force-firefox-to-display-your-full-feeds-wordpress-hack/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;anyway, it might give you some ideas.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dawilson on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-467</link>
			<pubDate>Sun, 27 Sep 2009 02:08:21 +0000</pubDate>
			<dc:creator>dawilson</dc:creator>
			<guid isPermaLink="false">467@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;I had some time on my hands today so updated PhotoQ and IQ2 to the latest levels in an attempt to fix my RSS problem. Unfortunately, it's not clear to me how I do this. I want to maintain the current look of my photoblog where the home page contains only the header, footer and main image but I want the RSS entries to contain the main image + the description text. Can anyone suggest how I achieve this? I've taken a look through the PHP code and played around a bit but I'm a complete newbie to WordPress and only minimally experienced in PHP.&#60;/p&#62;
&#60;p&#62;Thanks in advance for any suggestions!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>whoismanu on "When you publish only text.."</title>
			<link>http://www.whoismanu.com/forum/topic/when-you-publish-only-text#post-405</link>
			<pubDate>Wed, 16 Sep 2009 22:04:19 +0000</pubDate>
			<dc:creator>whoismanu</dc:creator>
			<guid isPermaLink="false">405@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;see my answer in your other thread: &#60;a href=&#34;http://www.whoismanu.com/forum/topic/no-batch-in-photoqbatchphp#post-383&#34; rel=&#34;nofollow&#34;&#62;http://www.whoismanu.com/forum/topic/no-batch-in-photoqbatchphp#post-383&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>unico on "When you publish only text.."</title>
			<link>http://www.whoismanu.com/forum/topic/when-you-publish-only-text#post-385</link>
			<pubDate>Fri, 21 Aug 2009 13:57:37 +0000</pubDate>
			<dc:creator>unico</dc:creator>
			<guid isPermaLink="false">385@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;I found a solution to this problem.. you can just add a simple text-link after your text-only entry, which will open the commenting field.&#60;/p&#62;
&#60;p&#62;when you create a text-only entry as a normal ARTICLE you will see a &#34;permalink&#34; just beneath the title of your entry (after you wrote something in the textfield..) it will look like this:&#60;br /&#62;
&#60;a href=&#34;http://yourblog/?p=xxx&#34; rel=&#34;nofollow&#34;&#62;http://yourblog/?p=xxx&#60;/a&#62; xxx being the article-number&#60;/p&#62;
&#60;p&#62;the link you want to insert, should look like this:&#60;br /&#62;
&#60;a href=&#34;http://yourblog/?p=xxx#respond&#34; rel=&#34;nofollow&#34;&#62;http://yourblog/?p=xxx#respond&#60;/a&#62; (so you add #respond to the permalink). users will open the commenting/description field by clicking on this link.&#60;/p&#62;
&#60;p&#62;this would be an easy solution for text only.. i couldn't figure out a similar solution for pictures, though :-(&#60;br /&#62;
any ideas?&#60;/p&#62;
&#60;p&#62;by/e Nico
&#60;/p&#62;</description>
		</item>
		<item>
			<title>unico on "When you publish only text.."</title>
			<link>http://www.whoismanu.com/forum/topic/when-you-publish-only-text#post-382</link>
			<pubDate>Fri, 21 Aug 2009 12:40:45 +0000</pubDate>
			<dc:creator>unico</dc:creator>
			<guid isPermaLink="false">382@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;&#34;one thing you can already do is put the text you want shown on the archive page and on the next prev links into the excerpt for each text post.&#34;&#60;/p&#62;
&#60;p&#62;aaah - awesome, this basically does exactly what i want :-)&#60;/p&#62;
&#60;p&#62;could you add one thing: when you create a NORMAL article, the commenting/description field should be OPEN by default for the FIRST entry you see, when you open the blog (this is basically the same wish as in my other thread: &#60;a href=&#34;http://www.whoismanu.com/forum/topic/no-batch-in-photoqbatchphp#post-383)&#34; rel=&#34;nofollow&#34;&#62;http://www.whoismanu.com/forum/topic/no-batch-in-photoqbatchphp#post-383)&#60;/a&#62;. otherwise user had no chance to comment on the entry, if they didn't reopen it via the archive (THEN commenting/description field IS open!)&#60;/p&#62;
&#60;p&#62;by/e Nico
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>

