<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress support forums Tag: theme</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: theme</description>
<language>en</language>
<pubDate>Tue, 02 Dec 2008 05:42:09 +0000</pubDate>

<item>
<title>chrishajer on "Looking for Theme"</title>
<link>http://bbpress.org/forums/topic/looking-for-theme#post-21101</link>
<pubDate>Fri, 28 Nov 2008 16:40:03 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">21101@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The Revolution themes are pretty nice and a lot of work have gone into them.  I doubt you will find anything for bbPress that you can &#60;strong&#62;easily&#60;/strong&#62; edit to make it look the same.&#60;/p&#62;
&#60;p&#62;Brian Gardner has a bbPress theme for Revolution here:&#60;br /&#62;
&#60;a href=&#34;http://www.briangardner.com/blog/revolution-finally-meets-bbpress.htm&#34; rel=&#34;nofollow&#34;&#62;http://www.briangardner.com/blog/revolution-finally-meets-bbpress.htm&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Or, you can find people who are familiar with Revolution and can create a theme for you, here:&#60;br /&#62;
&#60;a href=&#34;http://www.revolutiontheme.com/support/viewforum.php?f=15&#34; rel=&#34;nofollow&#34;&#62;http://www.revolutiontheme.com/support/viewforum.php?f=15&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Not exactly what you're looking for, but the quality of those Revolution themes is so high, you're going to have a hard time finding something for bbPress of similar quality.&#60;/p&#62;
&#60;p&#62;You could also start with one of the bbPress Raw themes:&#60;br /&#62;
&#60;a href=&#34;http://bbpressraw.com/bbpress_blank_themes/&#34; rel=&#34;nofollow&#34;&#62;http://bbpressraw.com/bbpress_blank_themes/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>enfotoad on "Looking for Theme"</title>
<link>http://bbpress.org/forums/topic/looking-for-theme#post-21089</link>
<pubDate>Fri, 28 Nov 2008 03:48:38 +0000</pubDate>
<dc:creator>enfotoad</dc:creator>
<guid isPermaLink="false">21089@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi there! I am looking for a theme that I could easily edit to make it look like Wordpress Revolution Church Theme (http://www.revolutiontwo.com/themes/church). Does anyone know of a theme?
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Remove 'dash' from forum description"</title>
<link>http://bbpress.org/forums/topic/remove-dash-from-forum-description#post-20943</link>
<pubDate>Sat, 22 Nov 2008 12:03:43 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">20943@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks sam.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Remove 'dash' from forum description"</title>
<link>http://bbpress.org/forums/topic/remove-dash-from-forum-description#post-20936</link>
<pubDate>Sat, 22 Nov 2008 06:39:05 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">20936@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Looks to me like it should accept what chrishajer put in there, as well as an array (that's what wp_parse_args is for).&#60;/p&#62;
&#60;p&#62;I'll make sure it isn't broken somehow.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Remove 'dash' from forum description"</title>
<link>http://bbpress.org/forums/topic/remove-dash-from-forum-description#post-20935</link>
<pubDate>Sat, 22 Nov 2008 06:31:41 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">20935@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The function is tricky in how it works, many WP/bbPress functions now use the generic $args call instead of breaking it down by field.&#60;/p&#62;
&#60;p&#62;First it checks if what's passed to it is a number, if so, the number is treaded as a specific forum id request.&#60;/p&#62;
&#60;p&#62;If it's NOT a number, then it's checked if it's not empty, and then if it's a string and there's no problem using it in an array. If so, then it's used as the  &#60;code&#62;before&#60;/code&#62; element.&#60;/p&#62;
&#60;p&#62;To bypass those situations, you'd have to send it an array &#60;/p&#62;
&#60;p&#62;Something like:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$args = array( &#38;#39;id&#38;#39; =&#38;gt; 1, &#38;#39;before&#38;#39; =&#38;gt; &#38;#39; [ &#38;#39;, &#38;#39;after&#38;#39; =&#38;gt; &#38;#39; ] &#38;#39; );
forum_description($args);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Where you could leave out any of those elements inside args if you didn't want it, like the &#60;code&#62;id&#60;/code&#62;, &#60;code&#62;after&#60;/code&#62;, etc.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Remove 'dash' from forum description"</title>
<link>http://bbpress.org/forums/topic/remove-dash-from-forum-description#post-20921</link>
<pubDate>Sat, 22 Nov 2008 00:32:40 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">20921@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;_ck_ - what if you wanted to use a different before character?  I tried &#60;code&#62;forum_description(&#38;#39;before=x&#38;#39;);&#60;/code&#62; but that didn't work.  I couldn't get before or after to work.&#60;/p&#62;
&#60;p&#62;Can you explain how to use the arguments for that function please?  Thanks.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function forum_description( $args = null ) {
        if ( is_numeric($args) )
                $args = array( &#38;#39;id&#38;#39; =&#38;gt; $args );
        elseif ( $args &#38;#38;&#38;#38; is_string($args) &#38;#38;&#38;#38; false === strpos($args, &#38;#39;=&#38;#39;) )
                $args = array( &#38;#39;before&#38;#39; =&#38;gt; $args );
        $defaults = array( &#38;#39;id&#38;#39; =&#38;gt; 0, &#38;#39;before&#38;#39; =&#38;gt; &#38;#39; &#38;#8211; &#38;#39;, &#38;#39;after&#38;#39; =&#38;gt; &#38;#39;&#38;#39; );
        $args = wp_parse_args( $args, $defaults );

        if ( $desc = apply_filters( &#38;#39;forum_description&#38;#39;, get_forum_description( $args[&#38;#39;id&#38;#39;] ), $args[&#38;#39;id&#38;#39;], $args ) )
                echo $args[&#38;#39;before&#38;#39;] . $desc . $args[&#38;#39;after&#38;#39;];&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#38;nbsp;&#60;br /&#62;
It seems like the relevant info is listed right there in the $defaults array, but I couldn't stumble upon the combination to make it work.
&#60;/p&#62;</description>
</item>
<item>
<title>puleddu on "Remove 'dash' from forum description"</title>
<link>http://bbpress.org/forums/topic/remove-dash-from-forum-description#post-20912</link>
<pubDate>Fri, 21 Nov 2008 22:45:25 +0000</pubDate>
<dc:creator>puleddu</dc:creator>
<guid isPermaLink="false">20912@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Yes, exactly!&#60;br /&#62;
Well, thank you for the information.
&#60;/p&#62;</description>
</item>
<item>
<title>kevinjohngallagher on "Remove 'dash' from forum description"</title>
<link>http://bbpress.org/forums/topic/remove-dash-from-forum-description#post-20910</link>
<pubDate>Fri, 21 Nov 2008 22:16:15 +0000</pubDate>
<dc:creator>kevinjohngallagher</dc:creator>
<guid isPermaLink="false">20910@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Sadly not mate.&#60;br /&#62;
I know what you're thinking.&#60;br /&#62;
Something like : &#60;a href=&#34;http://codex.wordpress.org/Template_Tags&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Template_Tags&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;But no, it's all guess work.
&#60;/p&#62;</description>
</item>
<item>
<title>puleddu on "Remove 'dash' from forum description"</title>
<link>http://bbpress.org/forums/topic/remove-dash-from-forum-description#post-20908</link>
<pubDate>Fri, 21 Nov 2008 20:32:38 +0000</pubDate>
<dc:creator>puleddu</dc:creator>
<guid isPermaLink="false">20908@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Great!&#60;br /&#62;
That's exactly what I was looking for.&#60;/p&#62;
&#60;p&#62;Does exist a &#60;em&#62;bb_function&#60;/em&#62; reference manual?&#60;/p&#62;
&#60;p&#62;Thank you a lot!
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Theme: iNove Release (v0.1)"</title>
<link>http://bbpress.org/forums/topic/theme-inove-release-v01#post-20902</link>
<pubDate>Fri, 21 Nov 2008 17:38:26 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">20902@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Unfortunately bbpress.org does not have theme browser yet like wordpress.org (which was just recently revamped).&#60;/p&#62;
&#60;p&#62;bbpress.org is overdue for a makeover and I suspect they will get to that after 1.0 is released, maybe early next year.
&#60;/p&#62;</description>
</item>
<item>
<title>suzkaw on "Theme: iNove Release (v0.1)"</title>
<link>http://bbpress.org/forums/topic/theme-inove-release-v01#post-20895</link>
<pubDate>Fri, 21 Nov 2008 17:04:26 +0000</pubDate>
<dc:creator>suzkaw</dc:creator>
<guid isPermaLink="false">20895@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I see what you mean.  I will get those changed over the weekend and release it again. &#60;/p&#62;
&#60;p&#62;By the way you may know or not but can you add a theme to the bbpress extend section so you get svn access?
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Theme: iNove Release (v0.1)"</title>
<link>http://bbpress.org/forums/topic/theme-inove-release-v01#post-20888</link>
<pubDate>Fri, 21 Nov 2008 16:10:49 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">20888@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Oh you have to be logged in to see the view list in your template. It's way under the forums, scroll to the bottom. I changed that behavior from kakumei so many views are still visible even when logged out. (update: I made it visible now in your theme so you can see)&#60;/p&#62;
&#60;p&#62;Granted most people's view list will be much more sane than my list but it's still nice if they are visible all the time to remind visitors they are available.
&#60;/p&#62;</description>
</item>
<item>
<title>suzkaw on "Theme: iNove Release (v0.1)"</title>
<link>http://bbpress.org/forums/topic/theme-inove-release-v01#post-20887</link>
<pubDate>Fri, 21 Nov 2008 16:00:12 +0000</pubDate>
<dc:creator>suzkaw</dc:creator>
<guid isPermaLink="false">20887@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks for the comments guys. &#60;/p&#62;
&#60;p&#62;@__ck__ when you say views are talking about the forum list?  Also good idea about the search. I just couldn't figure out a good place for the register login section. :(
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Remove 'dash' from forum description"</title>
<link>http://bbpress.org/forums/topic/remove-dash-from-forum-description#post-20878</link>
<pubDate>Fri, 21 Nov 2008 14:43:26 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">20878@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;forum_description has an optional &#34;before&#34; argument&#60;/p&#62;
&#60;p&#62;try  &#60;code&#62;forum_description(&#38;#39;&#38;#39;);&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Theme: iNove Release (v0.1)"</title>
<link>http://bbpress.org/forums/topic/theme-inove-release-v01#post-20874</link>
<pubDate>Fri, 21 Nov 2008 13:57:27 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">20874@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Very nice! Perhaps one of the top 3 themes so far IMHO.&#60;br /&#62;
Alternate demo on bbShowcase:&#60;br /&#62;
&#60;a href=&#34;http://bbshowcase.org/forums/?bbtheme=inove&#34; rel=&#34;nofollow&#34;&#62;http://bbshowcase.org/forums/?bbtheme=inove&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I would maybe move Views under Hot Tags and therefore make the views list visible all the time too. Also a small search box in the nav bar instead of the word &#34;search&#34; (or next to it) would be useful. I notice your site has a nice search box, also the RSS link on your site is nice too ;-)&#60;/p&#62;
&#60;p&#62;I'm definitely making a 960px theme next year for my site, you've proven how good/useful it looks.
&#60;/p&#62;</description>
</item>
<item>
<title>musnake on "Theme: iNove Release (v0.1)"</title>
<link>http://bbpress.org/forums/topic/theme-inove-release-v01#post-20869</link>
<pubDate>Fri, 21 Nov 2008 12:06:21 +0000</pubDate>
<dc:creator>musnake</dc:creator>
<guid isPermaLink="false">20869@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Congratulations!  Nice and clean.
&#60;/p&#62;</description>
</item>
<item>
<title>puleddu on "Remove 'dash' from forum description"</title>
<link>http://bbpress.org/forums/topic/remove-dash-from-forum-description#post-20866</link>
<pubDate>Fri, 21 Nov 2008 10:13:36 +0000</pubDate>
<dc:creator>puleddu</dc:creator>
<guid isPermaLink="false">20866@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Is possible to remove the &#60;em&#62;emdash&#60;/em&#62; from the forum description? &#60;/p&#62;
&#60;p&#62;&#60;code&#62;The function that generate the description: forum_description()&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;How can I obtain this?&#60;br /&#62;
Thank you in advance!
&#60;/p&#62;</description>
</item>
<item>
<title>suzkaw on "Theme: iNove Release (v0.1)"</title>
<link>http://bbpress.org/forums/topic/theme-inove-release-v01#post-20862</link>
<pubDate>Fri, 21 Nov 2008 05:00:57 +0000</pubDate>
<dc:creator>suzkaw</dc:creator>
<guid isPermaLink="false">20862@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I just ported the awesome iNove wordpress theme over to a bbPress template.  Here is a link to download it and see a demo:&#60;br /&#62;
&#60;a href=&#34;http://ericlbarnes.com/inove-for-bbpress/&#34; rel=&#34;nofollow&#34;&#62;http://ericlbarnes.com/inove-for-bbpress/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Hope someone finds it useful!
&#60;/p&#62;</description>
</item>
<item>
<title>suzkaw on "Theme: WP Mimic Released (v.02)"</title>
<link>http://bbpress.org/forums/topic/theme-wp-mimic-released-v02#post-20682</link>
<pubDate>Fri, 14 Nov 2008 19:00:23 +0000</pubDate>
<dc:creator>suzkaw</dc:creator>
<guid isPermaLink="false">20682@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Awesome theme.  Thanks for releasing it!&#60;br /&#62;
I have modified it a little and used it here:&#60;br /&#62;
&#60;a href=&#34;http://68kb.com/support/&#34; rel=&#34;nofollow&#34;&#62;http://68kb.com/support/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>limited on "Theme: WP Mimic Released (v.02)"</title>
<link>http://bbpress.org/forums/topic/theme-wp-mimic-released-v02#post-20662</link>
<pubDate>Thu, 13 Nov 2008 06:55:10 +0000</pubDate>
<dc:creator>limited</dc:creator>
<guid isPermaLink="false">20662@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This theme is still under development.  I have yet to test the theme out in 1.0. alpha.2.  But I will once WP2.7 has a stable release...&#60;/p&#62;
&#60;p&#62;A WP Theme (2.6.3) can be seen at &#60;a href=&#34;http://idolsavenue.com&#34; rel=&#34;nofollow&#34;&#62;http://idolsavenue.com&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>schmitt on "Theme: WP Mimic Released (v.02)"</title>
<link>http://bbpress.org/forums/topic/theme-wp-mimic-released-v02#post-20601</link>
<pubDate>Mon, 10 Nov 2008 19:46:49 +0000</pubDate>
<dc:creator>schmitt</dc:creator>
<guid isPermaLink="false">20601@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Very nice theme. A great candidate for an accompanying Wordpress theme too.
&#60;/p&#62;</description>
</item>
<item>
<title>lstelie on "Theme: WP Mimic Released (v.02)"</title>
<link>http://bbpress.org/forums/topic/theme-wp-mimic-released-v02#post-20596</link>
<pubDate>Mon, 10 Nov 2008 18:20:46 +0000</pubDate>
<dc:creator>lstelie</dc:creator>
<guid isPermaLink="false">20596@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;Its a great theme.&#60;br /&#62;
One problem, when the forum uses categories, these categories are displayed as forums with 0 (zero) messages&#60;/p&#62;
&#60;p&#62;I use 1.0alpha2
&#60;/p&#62;</description>
</item>
<item>
<title>salontafels on "Theme: WP Mimic Released (v.02)"</title>
<link>http://bbpress.org/forums/topic/theme-wp-mimic-released-v02#post-20547</link>
<pubDate>Sat, 08 Nov 2008 13:11:41 +0000</pubDate>
<dc:creator>salontafels</dc:creator>
<guid isPermaLink="false">20547@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Beautiful theme! I'm going to check it out further!
&#60;/p&#62;</description>
</item>
<item>
<title>limited on "Theme: WP Mimic Released (v.02)"</title>
<link>http://bbpress.org/forums/topic/theme-wp-mimic-released-v02#post-20308</link>
<pubDate>Tue, 28 Oct 2008 13:05:08 +0000</pubDate>
<dc:creator>limited</dc:creator>
<guid isPermaLink="false">20308@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks, I'll update it in the next version update.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Theme: WP Mimic Released (v.02)"</title>
<link>http://bbpress.org/forums/topic/theme-wp-mimic-released-v02#post-20301</link>
<pubDate>Tue, 28 Oct 2008 04:36:22 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">20301@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Very nice work.&#60;br /&#62;
Demo:&#60;br /&#62;
&#60;a href=&#34;http://bbshowcase.org/forums/?bbtheme=WPMimic&#34; rel=&#34;nofollow&#34;&#62;http://bbshowcase.org/forums/?bbtheme=WPMimic&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;don't forget to add the info at the top of style.css&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;/*
Theme Name: WP Mimic
Theme URI: &#60;a href=&#34;http://idolsavenue.com/forums/topic.php?id=1&#34; rel=&#34;nofollow&#34;&#62;http://idolsavenue.com/forums/topic.php?id=1&#60;/a&#62;
Description: This theme is called &#38;quot;WP Mimic&#38;quot; because it is structured after the current themes of Wordpress (.com and .org) forums.
Version: 0.02
Author: limited
Author URI: &#60;a href=&#34;http://idolsavenue.com/forums/&#34; rel=&#34;nofollow&#34;&#62;http://idolsavenue.com/forums/&#60;/a&#62;
*/&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#60;em&#62; &#60;/em&#62;&#60;br /&#62;
and make a proper screenshot
&#60;/p&#62;</description>
</item>
<item>
<title>limited on "Theme: WP Mimic Released (v.02)"</title>
<link>http://bbpress.org/forums/topic/theme-wp-mimic-released-v02#post-20297</link>
<pubDate>Tue, 28 Oct 2008 00:56:42 +0000</pubDate>
<dc:creator>limited</dc:creator>
<guid isPermaLink="false">20297@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Info and download link at: &#60;a href=&#34;http://idolsavenue.com/forums/&#34; rel=&#34;nofollow&#34;&#62;http://idolsavenue.com/forums/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Is it okay to recreate the wordpress (.com and .org) forum theme?"</title>
<link>http://bbpress.org/forums/topic/is-it-okay-to-recreate-the-wordpress-com-and-org-forum-theme#post-20272</link>
<pubDate>Mon, 27 Oct 2008 12:03:22 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">20272@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;@limited&#60;/p&#62;
&#60;p&#62;Automattic generally don't have a problem with this sort of thing at all unless of course you were using it to pretend to be WordPress.org or WordPress.com in some sort of deceptive way. Which of course you aren't. :)
&#60;/p&#62;</description>
</item>
<item>
<title>Goedkoop Lenen on "Is it okay to recreate the wordpress (.com and .org) forum theme?"</title>
<link>http://bbpress.org/forums/topic/is-it-okay-to-recreate-the-wordpress-com-and-org-forum-theme#post-20259</link>
<pubDate>Sun, 26 Oct 2008 18:29:44 +0000</pubDate>
<dc:creator>Goedkoop Lenen</dc:creator>
<guid isPermaLink="false">20259@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;@limited, the design is very close indeed!
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Is it okay to recreate the wordpress (.com and .org) forum theme?"</title>
<link>http://bbpress.org/forums/topic/is-it-okay-to-recreate-the-wordpress-com-and-org-forum-theme#post-20246</link>
<pubDate>Sun, 26 Oct 2008 05:25:15 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">20246@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Very nice work!
&#60;/p&#62;</description>
</item>
<item>
<title>limited on "Is it okay to recreate the wordpress (.com and .org) forum theme?"</title>
<link>http://bbpress.org/forums/topic/is-it-okay-to-recreate-the-wordpress-com-and-org-forum-theme#post-20239</link>
<pubDate>Sat, 25 Oct 2008 19:11:20 +0000</pubDate>
<dc:creator>limited</dc:creator>
<guid isPermaLink="false">20239@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Demo: &#60;a href=&#34;http://idolsavenue.com/forums/&#34; rel=&#34;nofollow&#34;&#62;http://idolsavenue.com/forums/&#60;/a&#62;
&#60;/p&#62;</description>
</item>

</channel>
</rss>
