<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<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>bbPress Support Forums &#187; Tag: css - Recent Posts</title>
		<link>http://bbpress.org/forums/tags/css</link>
		<description>bbPress Support Forums &#187; Tag: css - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Fri, 25 May 2012 14:59:52 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://bbpress.org/forums/rss/tags/css" rel="self" type="application/rss+xml" />

		<item>
			<title>StephAO on "bbPress 2.0 - Theme Compatibility"</title>
			<link>http://bbpress.org/forums/topic/bbpress-20-theme-compatibility/page/5#post-103189</link>
			<pubDate>Thu, 24 May 2012 20:02:59 +0000</pubDate>
			<dc:creator>StephAO</dc:creator>
			<guid isPermaLink="false">103189@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>no the good forum. sorry
</p>]]></description>
					</item>
		<item>
			<title>alex@hannahtechnologies.com on "Forum Listing - modify &quot;freshness&quot; CSS????"</title>
			<link>http://bbpress.org/forums/topic/forum-listing-modify-freshness-css#post-102780</link>
			<pubDate>Mon, 14 May 2012 23:41:02 +0000</pubDate>
			<dc:creator>alex@hannahtechnologies.com</dc:creator>
			<guid isPermaLink="false">102780@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi everyone,</p>
<p>I have a new site we are working on and I have a CSS related question for you all.  I do have a web developer who is much more experienced with CSS, however, I was hoping you all could at least point me in the right direction so I may have something to show him when we start the design process...</p>
<p>On our main bbPress page, which lists out the active forums, we have a column called "freshness" with either "No Topics" if no one has posted or it has the number of days since the last post and the last author.  The problem is that it's pretty visually ugly to see the spacing between "No Topic" and then the spacing between the column which has an actual post with the number of days of freshness and the author.  </p>
<p>What I am trying to do is if there is "No Topics" to increase the column size via CSS to make it the same size as the columns who have actual posts with a freshness date and author pic.  </p>
<p>I am attaching a screenshot of what I am trying to do.  I ran firebug and I see the CSS but I am pulling my hair out trying to figure out how to modify it. </p>
<p>Thanks!</p>
<p>Alex
</p>]]></description>
					</item>
		<item>
			<title>templs on "bbPress 2.0 - Theme Compatibility"</title>
			<link>http://bbpress.org/forums/topic/bbpress-20-theme-compatibility/page/5#post-101332</link>
			<pubDate>Mon, 09 Apr 2012 05:15:54 +0000</pubDate>
			<dc:creator>templs</dc:creator>
			<guid isPermaLink="false">101332@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hey, villagora!<br />
Can you tell more how you did this?</p>
<blockquote><p>I copied the bbp-twentyten theme and personnalized it.</p></blockquote>
<p>Did you move the copy to <strong>bbp-themes</strong> or to the <strong>wp-content/themes</strong>?</p>
<blockquote><p>Then I redefined it as the default bbpress theme</p></blockquote>
<p>Do you mean changes in both <strong>functions.php</strong> or making changes in core?</p>
<blockquote><p>%FUNCTIONS_PHP_OF_MY_BBPRESS_THEME%</p></blockquote>
<p>What is that? Should I change it to path to functions.php and should this path to be absolute?</p>
<p>Thanks!
</p>]]></description>
					</item>
		<item>
			<title>jaredatch on "CSS display: none question"</title>
			<link>http://bbpress.org/forums/topic/css-display-none-question#post-101313</link>
			<pubDate>Sun, 08 Apr 2012 17:59:51 +0000</pubDate>
			<dc:creator>jaredatch</dc:creator>
			<guid isPermaLink="false">101313@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>It depends on what theme you are using.</p>
<p>Theme's typically call and register sidebar's differently, which is why it is easier to fix this on a theme level and not a plugin.</p>
<p>Find out how your theme is handling sidebars, write mini plugin or block in your functions.php that addresses the issue.</p>
<p>We've been down this road already :P
</p>]]></description>
					</item>
		<item>
			<title>OC2PS on "CSS display: none question"</title>
			<link>http://bbpress.org/forums/topic/css-display-none-question#post-101299</link>
			<pubDate>Sun, 08 Apr 2012 09:12:53 +0000</pubDate>
			<dc:creator>OC2PS</dc:creator>
			<guid isPermaLink="false">101299@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Thanks guys!</p>
<p>@martin_style: Not quite sure what you mean by "once time load slow, but not loading multiple times"</p>
<p>@jaredatch: How do I nuke the sidebar?</p>
<p>I lied. I am not using<br />
<pre><code>.bbp-forum #primary {
   display: none;
}</code></pre>
<p>I am using a plugin that replaces primary sidebar with a bbpress specific sidebar.</p>
<p>But I have 2 sidebars, and I am hiding the 2nd sidebar with CSS<br />
<pre><code>.bbp-forum #secondary {
   display: none;
}</code></pre>
<p>So this is the one that I need to remove.</p>
<p>I am guessing that instead of fiddling with the Theme, it might be easier to patch the plugin. Here's what it does at the moment:<br />
<pre><code>function vp_sidebars_widgets($data)
		{
			// if bbpress enabled and main sidebar requested
			if ($this-&#62;is_bbp &#38;&#38; $this-&#62;is_main_sidebar)
			{
				// switch sidebar if bbrepss sidebar has some widgets in it
				if (!empty($data[$this-&#62;sidebar_id]))
				{
					if (isset($data[&#039;sidebar-1&#039;]))
					{
						// uses sidebar-1 as main sidebar in most themes
						// set forum sidebar as main sidebar
						$main_sidebar_key = &#039;sidebar-1&#039;;
					}
					else
					{
						// get first sidebar which should be main in most themes
						foreach ($data as $k =&#62; $v)
						{
							if (strpos($k,&#039;inactive&#039;)===false)
							{
								$main_sidebar_key = $k;
								break;
							}
						}
					}

					// replace main sidebar with bbpress sidebar
					if (isset($main_sidebar_key))
					{
						$data[$main_sidebar_key] = $data[$this-&#62;sidebar_id];
					}
				}

				// reset main sidebar request
				$this-&#62;is_main_sidebar = false;
			}

			// return modified widgets array
			return $data;
		}</code></pre>]]></description>
					</item>
		<item>
			<title>martin_style on "CSS display: none question"</title>
			<link>http://bbpress.org/forums/topic/css-display-none-question#post-101297</link>
			<pubDate>Sun, 08 Apr 2012 08:12:17 +0000</pubDate>
			<dc:creator>martin_style</dc:creator>
			<guid isPermaLink="false">101297@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>If you using method that, you have to load all information in one page, once time load slow, but not loading multiple times
</p>]]></description>
					</item>
		<item>
			<title>jaredatch on "CSS display: none question"</title>
			<link>http://bbpress.org/forums/topic/css-display-none-question#post-101267</link>
			<pubDate>Sat, 07 Apr 2012 14:59:22 +0000</pubDate>
			<dc:creator>jaredatch</dc:creator>
			<guid isPermaLink="false">101267@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>No its definitely still being rendered by the server and the browser, your browser just hides it. Ideally you'll want to find a way to nuke the sidebar on bbPress pages, but you'll have to poke around your theme to do that.
</p>]]></description>
					</item>
		<item>
			<title>OC2PS on "CSS display: none question"</title>
			<link>http://bbpress.org/forums/topic/css-display-none-question#post-101252</link>
			<pubDate>Sat, 07 Apr 2012 10:07:15 +0000</pubDate>
			<dc:creator>OC2PS</dc:creator>
			<guid isPermaLink="false">101252@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I'm technically illiterate so need some help understanding this.</p>
<p>On the bbPress pages, I am using CSS to hide sidebar...something like<br />
<pre><code>.bbp-forum #primary {
   display: none;
}</code></pre>
<p>My question is: Is the sidebar is still loaded (on server, in browser) and just not displayed, or do I by simply styling it out of view also save some time on page loading?
</p>]]></description>
					</item>
		<item>
			<title>natproff on "Forum user styling"</title>
			<link>http://bbpress.org/forums/topic/forum-user-styling#post-101180</link>
			<pubDate>Thu, 05 Apr 2012 20:21:57 +0000</pubDate>
			<dc:creator>natproff</dc:creator>
			<guid isPermaLink="false">101180@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Thanks for replying but I've figured it out. I had the right page all along but the right classes from the Bones template weren't being passed to the div container. I've added them manually and it's working fine.</p>
<p>Thanks again,<br />
Natalie
</p>]]></description>
					</item>
		<item>
			<title>jaredatch on "Forum user styling"</title>
			<link>http://bbpress.org/forums/topic/forum-user-styling#post-101132</link>
			<pubDate>Wed, 04 Apr 2012 21:29:32 +0000</pubDate>
			<dc:creator>jaredatch</dc:creator>
			<guid isPermaLink="false">101132@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>What version of bbPress are you using?
</p>]]></description>
					</item>
		<item>
			<title>natproff on "Forum user styling"</title>
			<link>http://bbpress.org/forums/topic/forum-user-styling#post-101120</link>
			<pubDate>Wed, 04 Apr 2012 14:36:24 +0000</pubDate>
			<dc:creator>natproff</dc:creator>
			<guid isPermaLink="false">101120@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>hi,</p>
<p>I am currently integrating BBPress with my custom theme. All going well so far, i've edited all the template files so they fit with my blog but i can't seem to find the file that controls the user profile page. Can anyone point me in the right direction?</p>
<p>Thanks,<br />
Natalie
</p>]]></description>
					</item>
		<item>
			<title>DarwinsDream on "Safari and Chrome CSS"</title>
			<link>http://bbpress.org/forums/topic/safari-and-chrome-css#post-100326</link>
			<pubDate>Mon, 19 Mar 2012 00:34:05 +0000</pubDate>
			<dc:creator>DarwinsDream</dc:creator>
			<guid isPermaLink="false">100326@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Always do thanks :)
</p>]]></description>
					</item>
		<item>
			<title>jaredatch on "Safari and Chrome CSS"</title>
			<link>http://bbpress.org/forums/topic/safari-and-chrome-css#post-100325</link>
			<pubDate>Mon, 19 Mar 2012 00:22:05 +0000</pubDate>
			<dc:creator>jaredatch</dc:creator>
			<guid isPermaLink="false">100325@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>The 2.1 upgrade should be smooth, however yo should certainly make backups before you update.</p>
<p>Avatars are through <a href="http://en.gravatar.com/" rel="nofollow">http://en.gravatar.com/</a> :)
</p>]]></description>
					</item>
		<item>
			<title>DarwinsDream on "Safari and Chrome CSS"</title>
			<link>http://bbpress.org/forums/topic/safari-and-chrome-css#post-100308</link>
			<pubDate>Sun, 18 Mar 2012 21:20:27 +0000</pubDate>
			<dc:creator>DarwinsDream</dc:creator>
			<guid isPermaLink="false">100308@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I got it.... woah... Topic Resolved</p>
<p>in bbpress.css (Line 109)</p>
<p>#content th.bbp-topic-author,<br />
#content th.bbp-reply-author {<br />
	text-align: center;<br />
	width: 110px;<br />
}</p>
<p>Sets the size of the container holding all the author info. Which the forum content aligns to. Mine was set too small it works now. With a little tweaks back and forth to adjust for cross browser continuity. hmmm </p>
<p>Do you know what effects the update to 2.1 will have? </p>
<p>btw you rock as a moderator !!! thanks </p>
<p>and how the hell do i change my avatar on bbpress.org ? haha
</p>]]></description>
					</item>
		<item>
			<title>jaredatch on "Safari and Chrome CSS"</title>
			<link>http://bbpress.org/forums/topic/safari-and-chrome-css#post-100302</link>
			<pubDate>Sun, 18 Mar 2012 19:39:21 +0000</pubDate>
			<dc:creator>jaredatch</dc:creator>
			<guid isPermaLink="false">100302@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I see what you mean. I'm not sure, I played around with the CSS but couldn't get it to work either.</p>
<p>It's worth noting that bbPress 2.1 actually has switched to a tableless layout :)
</p>]]></description>
					</item>
		<item>
			<title>DarwinsDream on "Safari and Chrome CSS"</title>
			<link>http://bbpress.org/forums/topic/safari-and-chrome-css#post-100298</link>
			<pubDate>Sun, 18 Mar 2012 18:54:32 +0000</pubDate>
			<dc:creator>DarwinsDream</dc:creator>
			<guid isPermaLink="false">100298@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>thanks jaredatch,</p>
<p>i did this... </p>
<p>" Easiest thing to do would be to set a width for (instead of relying on auto)<br />
#content td.bbp-topic-author "</p>
<p>it did nothing across platforms, but thank you very much for a quick reply.</p>
<p>here is the code i used and is still in place on the live site.</p>
<p>#content td.bbp-topic-author,<br />
#content td.bbp-reply-author {<br />
	padding: 15px;<br />
	text-align: center;<br />
	vertical-align: top;<br />
	width: 100px;</p>
<p>I also tried width values of % and pt</p>
<p>I also attacked the column next to it, but i think the issue is in the author column.... Any other ideas? </p>
<p>#content tbody .bbp-topic-content,<br />
#content tbody .bbp-reply-content {<br />
	vertical-align: top;<br />
	padding: 5px 10px 0px 0px;<br />
	overflow: auto;
</p>]]></description>
					</item>
		<item>
			<title>jaredatch on "Safari and Chrome CSS"</title>
			<link>http://bbpress.org/forums/topic/safari-and-chrome-css#post-100290</link>
			<pubDate>Sun, 18 Mar 2012 18:08:12 +0000</pubDate>
			<dc:creator>jaredatch</dc:creator>
			<guid isPermaLink="false">100290@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Easiest thing to do would be to set a width for (instead of relying on auto)<br />
<code>#content td.bbp-topic-author</code>
</p>]]></description>
					</item>
		<item>
			<title>DarwinsDream on "Safari and Chrome CSS"</title>
			<link>http://bbpress.org/forums/topic/safari-and-chrome-css#post-100281</link>
			<pubDate>Sun, 18 Mar 2012 15:37:50 +0000</pubDate>
			<dc:creator>DarwinsDream</dc:creator>
			<guid isPermaLink="false">100281@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I have an intergrated version of buddypress on my wordpress site using the default theme at <a href="http://www.soundhampton.com" rel="nofollow">http://www.soundhampton.com</a> . I've been editing it for weeks but for some reason in Safari and Chrome the CSS shifts the content and the user name to the right about 80px or there is no CSS being read whatsoever. Does anyone have any clue whats going on here? Any help would be greatly appreciated. I think it maybe an HTML5 issue but definitely a CSS issue </p>
<p>Here is a good exaple of whats going on:</p>
<p><a href="http://www.soundhampton.com/?topic=apples-siri-not-as-smart-as-she-looks-lawsuit-charges" rel="nofollow">http://www.soundhampton.com/?topic=apples-siri-not-as-smart-as-she-looks-lawsuit-charges</a> </p>
<p>open in firefox or ie, then open in safari or chrome the difference is clear.
</p>]]></description>
					</item>
		<item>
			<title>Number_6 on "Which stylesheet?"</title>
			<link>http://bbpress.org/forums/topic/which-stylesheet#post-100257</link>
			<pubDate>Sat, 17 Mar 2012 18:15:18 +0000</pubDate>
			<dc:creator>Number_6</dc:creator>
			<guid isPermaLink="false">100257@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I was thinking so, yes.</p>
<p>I downloaded it. And maybe I'm stupid. But how do I use it to identify the CSS of the tables in one of the many many many CSS files Buddypress &#38; bbpress use?
</p>]]></description>
					</item>
		<item>
			<title>raphaelsuzuki on "Which stylesheet?"</title>
			<link>http://bbpress.org/forums/topic/which-stylesheet#post-100098</link>
			<pubDate>Wed, 14 Mar 2012 22:08:51 +0000</pubDate>
			<dc:creator>raphaelsuzuki</dc:creator>
			<guid isPermaLink="false">100098@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Install FireBug in Firefox or Chrome, then you can see which stylesheet is being used.
</p>]]></description>
					</item>
		<item>
			<title>villagora on "bbPress 2.0 - Theme Compatibility"</title>
			<link>http://bbpress.org/forums/topic/bbpress-20-theme-compatibility/page/5#post-99984</link>
			<pubDate>Wed, 14 Mar 2012 18:14:46 +0000</pubDate>
			<dc:creator>villagora</dc:creator>
			<guid isPermaLink="false">99984@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi everyone,</p>
<p>I read the beginning of the topic cause I am very interested in building compatibility between my theme (a child theme of buddypress) and bbpress (indeed I installed the buddypress plugin and the bbpress one).</p>
<p>I don't know if this has already be given as a solution (or even if it actually one :). I copied the bbp-twentyten theme and personnalized it. Then I redefined it as the default bbpress theme, in order it is the one used instead of bbp-twentyten.</p>
<p>What I wrote in the functions.php of my theme:</p>
<pre><code>if ( class_exists(&#039;bbPress&#039;) &#38;&#38; file_exists(%FUNCTIONS_PHP_OF_MY_BBPRESS_THEME%) ) {
    require_once %FUNCTIONS_PHP_OF_MY_BBPRESS_THEME%;
} else {
    add_action(&#039;admin_notices&#039;, &#039;message_if_my_bbpress_theme_is_absent&#039;);
}</code></pre>
<p>In the functions file of my bbpress theme I have:</p>
<p><code>$bbp-&#62;theme_compat-&#62;theme = new MY_BBP_THEME();</code></p>
<p>And thus I have my child theme from buddypress safe and my second theme for bbpress used instead of bbp-twentyten.</p>
<p>Hope this is a good solution and it can be helpful!
</p>]]></description>
					</item>
		<item>
			<title>Number_6 on "Which stylesheet?"</title>
			<link>http://bbpress.org/forums/topic/which-stylesheet#post-99968</link>
			<pubDate>Wed, 14 Mar 2012 09:53:52 +0000</pubDate>
			<dc:creator>Number_6</dc:creator>
			<guid isPermaLink="false">99968@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I made a terrible mistake. I allowed Buddypress to install bbPress for me.</p>
<p>Now I can't find which CSS file handles the colour scheme. I'm using a dark WordPress theme so I need to adapt the background colours to it.</p>
<p>Can anyone point me towards the appropriate CSS file please?
</p>]]></description>
					</item>
		<item>
			<title>GreenDiablo on "Highlight / style question differently from replies"</title>
			<link>http://bbpress.org/forums/topic/highlight-style-question-differently-from-replies#post-98526</link>
			<pubDate>Fri, 24 Feb 2012 17:42:12 +0000</pubDate>
			<dc:creator>GreenDiablo</dc:creator>
			<guid isPermaLink="false">98526@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Worked like a charm!! Thanks!
</p>]]></description>
					</item>
		<item>
			<title>John James Jacoby on "Highlight / style question differently from replies"</title>
			<link>http://bbpress.org/forums/topic/highlight-style-question-differently-from-replies#post-98522</link>
			<pubDate>Fri, 24 Feb 2012 17:10:36 +0000</pubDate>
			<dc:creator>John James Jacoby</dc:creator>
			<guid isPermaLink="false">98522@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Adding...</p>
<pre>add_filter( 'bbp_show_lead_topic', '__return_true' );</pre>
<p>...to a custom plugin or your themes' functions.php will separate the lead topic out from its replies.</p>
<p>As far as styling goes, opening up Firebug/Inspector and using the classes in the templates should be enough to get you by. Some extra classes were added in the development version of bbPress, which will hopefully be out in a few weeks.
</p>]]></description>
					</item>
		<item>
			<title>GreenDiablo on "Highlight / style question differently from replies"</title>
			<link>http://bbpress.org/forums/topic/highlight-style-question-differently-from-replies#post-98360</link>
			<pubDate>Tue, 21 Feb 2012 19:54:38 +0000</pubDate>
			<dc:creator>GreenDiablo</dc:creator>
			<guid isPermaLink="false">98360@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I'm trying to find a way to style/highlight the actual question content differently from replies (in single-topic). The way it is setup by default it looks more like the question is the first reply.</p>
<p>Where could I add a different class for the actual question and also for the bbp-reply-header?
</p>]]></description>
					</item>
		<item>
			<title>John James Jacoby on "Are forums, posts and replies custom post types?"</title>
			<link>http://bbpress.org/forums/topic/are-forums-posts-and-replies-custom-post-types#post-97826</link>
			<pubDate>Fri, 03 Feb 2012 22:22:40 +0000</pubDate>
			<dc:creator>John James Jacoby</dc:creator>
			<guid isPermaLink="false">97826@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I don't know what you mean? Other than in Settings &#62; Forums ?
</p>]]></description>
					</item>
		<item>
			<title>acoburn4 on "bbPress 2.0 - Theme Compatibility"</title>
			<link>http://bbpress.org/forums/topic/bbpress-20-theme-compatibility/page/5#post-97794</link>
			<pubDate>Thu, 02 Feb 2012 20:43:05 +0000</pubDate>
			<dc:creator>acoburn4</dc:creator>
			<guid isPermaLink="false">97794@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Finally got a bbPress child theme working.  Just wanted to make a slight clarification, in case someone ran into the same stumbling block.</p>
<p>Make sure when you copy files from /bbpress/bbp-themes/bbp-twentyten that you maintain the subfolder structure as well (e.g. css, js, bbpress).  I was copying all files into the root of my custom wordpress theme (wp-content/themes/mytheme) without maintaining the directory structure and I was getting some strange behavior.</p>
<p>Hope this helps someone who might be having trouble!
</p>]]></description>
					</item>
		<item>
			<title>OC2PS on "Are forums, posts and replies custom post types?"</title>
			<link>http://bbpress.org/forums/topic/are-forums-posts-and-replies-custom-post-types#post-97778</link>
			<pubDate>Thu, 02 Feb 2012 11:52:12 +0000</pubDate>
			<dc:creator>OC2PS</dc:creator>
			<guid isPermaLink="false">97778@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Where can I edit the forum root?
</p>]]></description>
					</item>
		<item>
			<title>OC2PS on "Are forums, posts and replies custom post types?"</title>
			<link>http://bbpress.org/forums/topic/are-forums-posts-and-replies-custom-post-types#post-97777</link>
			<pubDate>Thu, 02 Feb 2012 11:47:36 +0000</pubDate>
			<dc:creator>OC2PS</dc:creator>
			<guid isPermaLink="false">97777@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Thanks JJJ
</p>]]></description>
					</item>
		<item>
			<title>John James Jacoby on "Are forums, posts and replies custom post types?"</title>
			<link>http://bbpress.org/forums/topic/are-forums-posts-and-replies-custom-post-types#post-97769</link>
			<pubDate>Thu, 02 Feb 2012 07:18:23 +0000</pubDate>
			<dc:creator>John James Jacoby</dc:creator>
			<guid isPermaLink="false">97769@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Yes they are custom post types.
</p>]]></description>
					</item>

	</channel>
</rss>

