<?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: postcount</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: postcount</description>
<language>en</language>
<pubDate>Tue, 02 Dec 2008 22:30:46 +0000</pubDate>

<item>
<title>sambauers on "Post count-based titles"</title>
<link>http://bbpress.org/forums/topic/post-count-based-titles#post-7715</link>
<pubDate>Tue, 29 May 2007 06:16:00 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">7715@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The plugin page is up now &#60;a href=&#34;http://bbpress.org/plugins/topic/50&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/topic/50&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Post count-based titles"</title>
<link>http://bbpress.org/forums/topic/post-count-based-titles#post-7628</link>
<pubDate>Thu, 24 May 2007 14:49:19 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">7628@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Here's a plugin for this.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.network.net.au/bbpress/plugins/post-count-titles/post-count-titles.latest.zip&#34; rel=&#34;nofollow&#34;&#62;http://www.network.net.au/bbpress/plugins/post-count-titles/post-count-titles.latest.zip&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;However, my hosts DNS servers are having some issues so it may timeout on some people. It should be added to the official plugin browser soon.
&#60;/p&#62;</description>
</item>
<item>
<title>box87 on "Post count-based titles"</title>
<link>http://bbpress.org/forums/topic/post-count-based-titles#post-7551</link>
<pubDate>Sun, 20 May 2007 20:47:16 +0000</pubDate>
<dc:creator>box87</dc:creator>
<guid isPermaLink="false">7551@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ah yes, my apologies. I was actually replying to the original comment, but I probably should have indicated that.&#60;br /&#62;
Anyway, enough of this madness... is someone going to make this plugin?
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Post count-based titles"</title>
<link>http://bbpress.org/forums/topic/post-count-based-titles#post-7543</link>
<pubDate>Sun, 20 May 2007 17:01:26 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">7543@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;There's no issue with usermeta accuracy if you hook onto both new and deleted posts.&#60;/p&#62;
&#60;p&#62;Fair enough, if you get theme authors to replace the post_author_link with your function. To get the same functionality, of course, you'd also need to add a link to the profile, but query count is the same, that's true.&#60;/p&#62;
&#60;p&#62;I don't think it's complex either. I just think it's not &#34;just a modification&#34; of the post count plugin, no matter what method you use. It's not irritating for you to say it's not complex, the irritating part is when you completely ignore what I say.
&#60;/p&#62;</description>
</item>
<item>
<title>box87 on "Post count-based titles"</title>
<link>http://bbpress.org/forums/topic/post-count-based-titles#post-7542</link>
<pubDate>Sun, 20 May 2007 16:02:25 +0000</pubDate>
<dc:creator>box87</dc:creator>
<guid isPermaLink="false">7542@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;An admin page would be handy. That's why I had said &#34;the 'hard' part would be making an admin page.&#34; It is necessary for this in my opinion.&#60;/p&#62;
&#60;p&#62;I think with this it would be better to put the post count in the usermeta, rather than the user title. That way for added and deleted posts all you have to do is add or subtract. The most accurate way, however, would probably be to count all the posts and update the meta every time a post is made. If a topic is deleted, a recount would need to be made too. That's why I liked the &#34;on the fly&#34; method. Fewer errors that way.&#60;/p&#62;
&#60;p&#62;Also, regarding query count, I believe it's still one query per post, but I could be wrong. I guess the difference would be whether you're pulling the user title from the usermeta or counting the posts on the fly. I'll mess around with this more this afternoon.&#60;/p&#62;
&#60;p&#62;And sorry to irritate, it's just not that complex IMO. Even your method :)
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Post count-based titles"</title>
<link>http://bbpress.org/forums/topic/post-count-based-titles#post-7538</link>
<pubDate>Sun, 20 May 2007 10:30:40 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">7538@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;About two lines of your plugin are counting posts, and if you didn't write the query into a variable first it would be one. Far more code is taken up with anything else, hence it's not just a modification.&#60;/p&#62;
&#60;p&#62;In my opinion a neat and efficient solution would be to hook onto the new and delete posts hooks, recalculate title, set in usermeta, and let bb grab that title when it's needed exactly the same as now. This means an additional database query and calculation of the new title only when new posts are made. Your method means that you do that extra work every time a post is fetched.&#60;/p&#62;
&#60;p&#62;To make this also be neat, you should have the possibility of setting titles and corresponding post count values in bb admin rather than having to change values across several lines to get the desired modifications (changing/adding one line of code would still be acceptableish, I suppose). You should also (in my opinion, yeah) use a far neater method of comparing the post count and setting the title from a code perspective; I dislike a long list of elseifs (at least use cases if you have to do it in this sort of way). I would, off the top of my head, use&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;//$postcount already found
foreach( $possibletitles AS $postcountrequired =&#38;gt; $title ) {
if( $postcount &#38;gt;= $postcountrequired ) {
$newtitle = $title;
}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;because that's like five lines of code and it doesn't matter how many different post count/title combinations are set, it does not increase in complexity. Putting $possibletitles together from the bb admin would not be difficult either.&#60;/p&#62;
&#60;p&#62;So the three or four things you have to do to make this plugin as I like it are counting posts, bb admin panel set up, comparing postcount and possible titles and setting this in the usermeta. &#34;All this hate&#34; comes from the fact that I thought I'd just explained that you can't just modify the post count plugin to have this functionality - you need way more code than there is in counting posts to do all this - and then you came along and said that all you need to do is just modify the post count plugin. That irritated me.&#60;/p&#62;
&#60;p&#62;Sam, I don't agree with this approach in all cases either but I prefer the very small amount of extra (unnecessary) data in the database (maximally one new record per member with one post or more) to re-querying and recalculating every time a post is displayed. :)
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Post count-based titles"</title>
<link>http://bbpress.org/forums/topic/post-count-based-titles#post-7537</link>
<pubDate>Sun, 20 May 2007 09:31:08 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">7537@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I think fel64's point is that it would be preferable to store the value in the users meta-data, this would reduce the database load by removing those trivial queries. This is generally the way bbPress handles these sorts of things (e.g. keeping post counts in the tables for forums and topics) - not that I necessarily agree with that approach in all cases.
&#60;/p&#62;</description>
</item>
<item>
<title>HowToGeek on "Post count-based titles"</title>
<link>http://bbpress.org/forums/topic/post-count-based-titles#post-7535</link>
<pubDate>Sun, 20 May 2007 07:59:28 +0000</pubDate>
<dc:creator>HowToGeek</dc:creator>
<guid isPermaLink="false">7535@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;@box87:&#60;/p&#62;
&#60;p&#62;That's exactly what I was talking about... it would be trivial to implement.&#60;/p&#62;
&#60;p&#62;It would be better to have a table/interface where you could configure the different titles and levels, of course... but in a pinch, that would do just fine.
&#60;/p&#62;</description>
</item>
<item>
<title>box87 on "Post count-based titles"</title>
<link>http://bbpress.org/forums/topic/post-count-based-titles#post-7533</link>
<pubDate>Sun, 20 May 2007 07:04:16 +0000</pubDate>
<dc:creator>box87</dc:creator>
<guid isPermaLink="false">7533@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Wow, so much hate... I'm not trying to insult anyone's sense of intelligence by making this appear easier than it is. It's just dead simple. I see no great complexity in it. It's still a &#34;basic MySQL query.&#34;&#60;br /&#62;
Why muck around in the usermeta? That's far too much work if you ask me.&#60;br /&#62;
Perhaps I'm wrong.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function get_user_title( $id ) {
	global $bbdb;

	$pc_query = &#38;quot;SELECT COUNT(post_id)
		FROM $bbdb-&#38;gt;posts
		WHERE poster_id = $id
		AND post_status = 0&#38;quot;;
	$post_count = $bbdb-&#38;gt;query( $pc_query );

	if( $post_count &#38;lt;= 10 ) {
		$title = &#38;quot;Noob&#38;quot;;
	} elseif( $post_count &#38;lt;= 20 ) {
		$title = &#38;quot;Might stick around&#38;quot;;
	} elseif( $post_count &#38;lt;= 30 ) {
		$title = &#38;quot;Title for 30&#38;quot;;
	} elseif( $post_count &#38;lt;= 40 ) {
		$title = &#38;quot;Over the hill&#38;quot;;
	.
	.
	.
	} elseif( $post_count &#38;lt;= 90 ) {
		$title = &#38;quot;Post whore&#38;quot;;
	} elseif( $post_count &#38;gt; 100 ) {
		$title = &#38;quot;Regular&#38;quot;;
	} else {
		$title = &#38;quot;Error&#38;quot;;
	}

	return $title;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;This way you don't have to mess around with updating anything... it's generated on the fly.&#60;/p&#62;
&#60;p&#62;Do take note that I haven't tested the code. I wrote it in about 5 minutes, so I didn't get around to testing. It's the concept I'm talking about though.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Post count-based titles"</title>
<link>http://bbpress.org/forums/topic/post-count-based-titles#post-7529</link>
<pubDate>Sat, 19 May 2007 23:41:14 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">7529@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#60;em&#62;just modify the post count plugin&#60;/em&#62;&#60;/p&#62;
&#60;p&#62;Gah. It might not be hard, but you cannot &#34;just modify&#34; it because it only does a very small part of it. It's almost trivial in what it does; run a very basic MySQL query and output it (not to put it down; that's literally all it does). This plugin would have to do three completely different things. It couldn't be just a modification of the post count plugin.
&#60;/p&#62;</description>
</item>
<item>
<title>box87 on "Post count-based titles"</title>
<link>http://bbpress.org/forums/topic/post-count-based-titles#post-7523</link>
<pubDate>Sat, 19 May 2007 20:37:16 +0000</pubDate>
<dc:creator>box87</dc:creator>
<guid isPermaLink="false">7523@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It shouldn't be too hard... just modify the post count plugin.&#60;br /&#62;
The &#34;hard&#34; part would be making an admin page, and if you look at other plugins that have done that, it's not too rough.
&#60;/p&#62;</description>
</item>
<item>
<title>bbolman on "Post count-based titles"</title>
<link>http://bbpress.org/forums/topic/post-count-based-titles#post-7520</link>
<pubDate>Sat, 19 May 2007 19:33:44 +0000</pubDate>
<dc:creator>bbolman</dc:creator>
<guid isPermaLink="false">7520@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Definitely a cool idea.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Post count-based titles"</title>
<link>http://bbpress.org/forums/topic/post-count-based-titles#post-7514</link>
<pubDate>Sat, 19 May 2007 18:53:11 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">7514@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I don't think it's much of an extension; the post count plugin in itself doesn't do much (just counts posts, really, which is very basic). To do this, you should use a hook when a post is made (and deleted) and change the member's title in usermeta. This doesn't seem that hard, though, and it could be a cool plugin.
&#60;/p&#62;</description>
</item>
<item>
<title>HowToGeek on "Post count-based titles"</title>
<link>http://bbpress.org/forums/topic/post-count-based-titles#post-7507</link>
<pubDate>Sat, 19 May 2007 03:34:08 +0000</pubDate>
<dc:creator>HowToGeek</dc:creator>
<guid isPermaLink="false">7507@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;That's a great idea for a plugin. Seems like a logical extension to the posts count plugin.
&#60;/p&#62;</description>
</item>
<item>
<title>Mr_Cynical on "Post count-based titles"</title>
<link>http://bbpress.org/forums/topic/post-count-based-titles#post-7504</link>
<pubDate>Fri, 18 May 2007 20:39:01 +0000</pubDate>
<dc:creator>Mr_Cynical</dc:creator>
<guid isPermaLink="false">7504@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Is there any plugin available to give users titles based on their post count (as in phpBB or vBulletin) - e.g. 0 posts has a 'noob' title, 10 posts 'fledgling', etc.
&#60;/p&#62;</description>
</item>
<item>
<title>JimmyVT on "My first plugin (post count)"</title>
<link>http://bbpress.org/forums/topic/my-first-plugin-post-count#post-2995</link>
<pubDate>Sun, 07 Jan 2007 16:30:26 +0000</pubDate>
<dc:creator>JimmyVT</dc:creator>
<guid isPermaLink="false">2995@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Just installed this and it works wonderfully. Great job!
&#60;/p&#62;</description>
</item>
<item>
<title>Nitallica on "My first plugin (post count)"</title>
<link>http://bbpress.org/forums/topic/my-first-plugin-post-count#post-2724</link>
<pubDate>Mon, 01 Jan 2007 00:25:40 +0000</pubDate>
<dc:creator>Nitallica</dc:creator>
<guid isPermaLink="false">2724@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Very handy!  Thanks!  :D
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "My first plugin (post count)"</title>
<link>http://bbpress.org/forums/topic/my-first-plugin-post-count#post-1799</link>
<pubDate>Thu, 30 Nov 2006 21:56:49 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">1799@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;@topiQ - No problem!&#60;br /&#62;
@Ardenfrost - That is very impressive!  &#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>topiQ on "My first plugin (post count)"</title>
<link>http://bbpress.org/forums/topic/my-first-plugin-post-count#post-1783</link>
<pubDate>Thu, 30 Nov 2006 16:44:41 +0000</pubDate>
<dc:creator>topiQ</dc:creator>
<guid isPermaLink="false">1783@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;thanks a lot Trent!&#60;br /&#62;
btw: great plugin, ardentfrost!
&#60;/p&#62;</description>
</item>
<item>
<title>ardentfrost on "My first plugin (post count)"</title>
<link>http://bbpress.org/forums/topic/my-first-plugin-post-count#post-1772</link>
<pubDate>Thu, 30 Nov 2006 15:10:28 +0000</pubDate>
<dc:creator>ardentfrost</dc:creator>
<guid isPermaLink="false">1772@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The change wasn't hard, just added an additional check to the SQL query and I apparently saw your post soon after you made it...&#60;/p&#62;
&#60;p&#62;Looks impressive though doesn't it?  You posted a request and 24 minutes later, I filled it?  :D
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "My first plugin (post count)"</title>
<link>http://bbpress.org/forums/topic/my-first-plugin-post-count#post-1761</link>
<pubDate>Thu, 30 Nov 2006 12:36:54 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">1761@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I put the plugin code under the username.   Compare the following code to your post.php in your templates.  Make sure you are editing post.php and placing it in /my-templates/post.php.&#60;/p&#62;
&#60;p&#62;		&#60;code&#62;&#38;lt;div class=&#38;quot;threadauthor&#38;quot;&#38;gt;&#60;br /&#62;
			&#38;lt;p&#38;gt;&#38;lt;strong&#38;gt;&#38;lt;?php post_author_link(); ?&#38;gt;&#38;lt;/strong&#38;gt;&#38;lt;br /&#38;gt;&#60;br /&#62;
			  &#38;lt;small&#38;gt;&#38;lt;?php post_author_type(); ?&#38;gt;&#38;lt;/small&#38;gt;&#38;lt;br /&#38;gt;&#60;br /&#62;
			  &#38;lt;small&#38;gt;&#38;lt;?php post_count(); ?&#38;gt;&#38;lt;/small&#38;gt;&#38;lt;/p&#38;gt;&#60;br /&#62;
		&#38;lt;/div&#38;gt;&#60;/p&#62;
&#60;p&#62;		&#38;lt;div class=&#38;quot;threadpost&#38;quot;&#38;gt;&#60;br /&#62;
			&#38;lt;div class=&#38;quot;post&#38;quot;&#38;gt;&#38;lt;?php post_text(); ?&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
			&#38;lt;div class=&#38;quot;poststuff&#38;quot;&#38;gt;&#38;lt;?php _e(&#38;#39;Posted:&#38;#39;); ?&#38;gt; &#38;lt;?php bb_post_time(); ?&#38;gt; &#38;lt;a href=&#38;quot;&#38;lt;?php post_anchor_link(); ?&#38;gt;&#38;quot;&#38;gt;#&#38;lt;/a&#38;gt; &#38;lt;?php post_ip_link(); ?&#38;gt; &#38;lt;?php post_edit_link(); ?&#38;gt; &#38;lt;?php post_delete_link(); ?&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
		&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;This is the entire post.php, but obviously where I have the code is near the top.&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>topiQ on "My first plugin (post count)"</title>
<link>http://bbpress.org/forums/topic/my-first-plugin-post-count#post-1758</link>
<pubDate>Thu, 30 Nov 2006 11:54:40 +0000</pubDate>
<dc:creator>topiQ</dc:creator>
<guid isPermaLink="false">1758@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;how do i display the posts under the usernames on the left side on the forum?!&#60;br /&#62;
 i managed to display them below each post, but that is not nice to see.
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "My first plugin (post count)"</title>
<link>http://bbpress.org/forums/topic/my-first-plugin-post-count#post-1756</link>
<pubDate>Thu, 30 Nov 2006 05:23:25 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">1756@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Wow...that was fast!  Thanks!  Believe it or not that dropped posts in my personal forum from 290 back to 266!&#60;/p&#62;
&#60;p&#62;Excellent!&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>ardentfrost on "My first plugin (post count)"</title>
<link>http://bbpress.org/forums/topic/my-first-plugin-post-count#post-1755</link>
<pubDate>Thu, 30 Nov 2006 05:19:59 +0000</pubDate>
<dc:creator>ardentfrost</dc:creator>
<guid isPermaLink="false">1755@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ok, made the change.  Added a part to the query where it only counts posts whose status is 0 (which means it's not deleted or spam).  It's updated on the same link from above, new version number .73a
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "My first plugin (post count)"</title>
<link>http://bbpress.org/forums/topic/my-first-plugin-post-count#post-1754</link>
<pubDate>Thu, 30 Nov 2006 04:55:54 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">1754@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Just wondering, is it possible to have the plugin count only active threads?   I have a count for all threads (even deleted ones) right now.    Not that they shouldn't be counted because they were created, but since they are gone forever, maybe an option to count only current posts would be useful?&#60;/p&#62;
&#60;p&#62;Thoughts?
&#60;/p&#62;</description>
</item>
<item>
<title>Steven19 on "My first plugin (post count)"</title>
<link>http://bbpress.org/forums/topic/my-first-plugin-post-count#post-1462</link>
<pubDate>Wed, 15 Nov 2006 21:20:47 +0000</pubDate>
<dc:creator>Steven19</dc:creator>
<guid isPermaLink="false">1462@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Cool THX, maybe its a feature in the next Version :)
&#60;/p&#62;</description>
</item>
<item>
<title>ardentfrost on "My first plugin (post count)"</title>
<link>http://bbpress.org/forums/topic/my-first-plugin-post-count#post-1423</link>
<pubDate>Tue, 14 Nov 2006 22:49:58 +0000</pubDate>
<dc:creator>ardentfrost</dc:creator>
<guid isPermaLink="false">1423@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm about to post it actually :)&#60;/p&#62;
&#60;p&#62;However, let me warn you ahead of time, it does require a single change to a core file.
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "My first plugin (post count)"</title>
<link>http://bbpress.org/forums/topic/my-first-plugin-post-count#post-1420</link>
<pubDate>Tue, 14 Nov 2006 22:25:56 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">1420@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Very nice!  Trying it out now!  How did you get the avatars to work?&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>ardentfrost on "My first plugin (post count)"</title>
<link>http://bbpress.org/forums/topic/my-first-plugin-post-count#post-1419</link>
<pubDate>Tue, 14 Nov 2006 22:19:56 +0000</pubDate>
<dc:creator>ardentfrost</dc:creator>
<guid isPermaLink="false">1419@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It's a simple one.&#60;/p&#62;
&#60;p&#62;It returns the post count of the user.&#60;/p&#62;
&#60;p&#62;You can see it in action at &#60;a href=&#34;http://www.rayd.org/forums2/&#34; rel=&#34;nofollow&#34;&#62;http://www.rayd.org/forums2/&#60;/a&#62; (you have to look at an actual topic)&#60;/p&#62;
&#60;p&#62;You can download it from &#60;a href=&#34;http://faq.rayd.org/bbpress_postcount/&#34; rel=&#34;nofollow&#34;&#62;http://faq.rayd.org/bbpress_postcount/&#60;/a&#62;  (link is instructions how to use it, link at bottom instructions)&#60;/p&#62;
&#60;p&#62;Is this something I can submit to bbpress?  Or is me mentioning it here the equivalent of submitting it?  :)
&#60;/p&#62;</description>
</item>

</channel>
</rss>
