<?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: filter</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: filter</description>
<language>en</language>
<pubDate>Thu, 16 Oct 2008 20:22:13 +0000</pubDate>

<item>
<title>finalwebsites on "replacing page title"</title>
<link>http://bbpress.org/forums/topic/replacing-page-title#post-19570</link>
<pubDate>Tue, 30 Sep 2008 09:58:27 +0000</pubDate>
<dc:creator>finalwebsites</dc:creator>
<guid isPermaLink="false">19570@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey Sam,&#60;/p&#62;
&#60;p&#62;thanks for the explanations. &#60;/p&#62;
&#60;p&#62;I got the whole stuff working and my &#34;seo plugin&#34; is almost released.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "replacing page title"</title>
<link>http://bbpress.org/forums/topic/replacing-page-title#post-19501</link>
<pubDate>Sat, 27 Sep 2008 09:17:30 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">19501@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The problem with your code was that you were adding a filter to bb_title via an action run when the title was already written to the browser. You should have added the filter at bb_init or just left it on it's own in the plugin.&#60;/p&#62;
&#60;p&#62;Also, I don't think there is particularly a need to remove the existing filter on bb_title in your case.
&#60;/p&#62;</description>
</item>
<item>
<title>finalwebsites on "replacing page title"</title>
<link>http://bbpress.org/forums/topic/replacing-page-title#post-19470</link>
<pubDate>Fri, 26 Sep 2008 11:33:47 +0000</pubDate>
<dc:creator>finalwebsites</dc:creator>
<guid isPermaLink="false">19470@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;By the way I came out here, I isolated the title function as suggested and the title is rewritten. Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>finalwebsites on "replacing page title"</title>
<link>http://bbpress.org/forums/topic/replacing-page-title#post-19464</link>
<pubDate>Fri, 26 Sep 2008 06:57:49 +0000</pubDate>
<dc:creator>finalwebsites</dc:creator>
<guid isPermaLink="false">19464@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi Thanks for helping.&#60;/p&#62;
&#60;p&#62;it doesn't work :(&#60;/p&#62;
&#60;p&#62;this is the function I use (stripped the other code)&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function my_title($title) {
	return &#38;#39;PHP Scripts Development Forum&#38;#39;;
}

function create_meta() {
    if (is_front()) {
        remove_filter(&#38;#39;bb_title&#38;#39;, &#38;#39;bb_get_title&#38;#39;);
        add_filter(&#38;#39;bb_get_title&#38;#39;, &#38;#39;my_title&#38;#39;);
        // code to create the meta data
    } else {
    	// do something else
    }
}
add_action(&#38;#39;bb_head&#38;#39;,&#38;#39;create_meta&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;maybe it doesn't work because I add the filter within that &#34;action&#34;?
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "replacing page title"</title>
<link>http://bbpress.org/forums/topic/replacing-page-title#post-19436</link>
<pubDate>Thu, 25 Sep 2008 00:57:08 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">19436@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;+1 johnbillion
&#60;/p&#62;</description>
</item>
<item>
<title>johnbillion on "replacing page title"</title>
<link>http://bbpress.org/forums/topic/replacing-page-title#post-19419</link>
<pubDate>Wed, 24 Sep 2008 14:40:54 +0000</pubDate>
<dc:creator>johnbillion</dc:creator>
<guid isPermaLink="false">19419@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Oh hang on, that's not right either. Use add_filter(). Try this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function my_title( $title ) {
return &#38;#39;PHP Scripts Development Forum&#38;#39;;
}

add_filter(&#38;#39;bb_get_title&#38;#39;, &#38;#39;my_title&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>johnbillion on "replacing page title"</title>
<link>http://bbpress.org/forums/topic/replacing-page-title#post-19418</link>
<pubDate>Wed, 24 Sep 2008 14:39:51 +0000</pubDate>
<dc:creator>johnbillion</dc:creator>
<guid isPermaLink="false">19418@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The second parameter in apply_filters() needs to be a function that returns the text to be displayed in the title. Eg:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function my_title( $title ) {
return &#38;#39;PHP Scripts Development Forum&#38;#39;;
}

apply_filters(&#38;#39;bb_get_title&#38;#39;, &#38;#39;my_title&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>finalwebsites on "replacing page title"</title>
<link>http://bbpress.org/forums/topic/replacing-page-title#post-19361</link>
<pubDate>Sun, 21 Sep 2008 17:51:54 +0000</pubDate>
<dc:creator>finalwebsites</dc:creator>
<guid isPermaLink="false">19361@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I'm busy with some plugin that will do some SEO tasks for bbpress.&#60;/p&#62;
&#60;p&#62;On thing seem to be harder than I thought. I would like to write new page titles in some circumstances. The next &#34;filter&#34; code doesn't work:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;remove_filter(&#38;#39;bb_get_header&#38;#39;, &#38;#39;bb_get_title&#38;#39;);
			apply_filters(&#38;#39;bb_get_title&#38;#39;, &#38;#39;PHP Scripts Development Forum&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;which function is called before I need to use the remove filter funtion? (the guy from the WP SEO plugin is using some str_replace function, very strange)&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>andersson on "Extending BB_Locale"</title>
<link>http://bbpress.org/forums/topic/extending-bb_locale#post-19347</link>
<pubDate>Sat, 20 Sep 2008 14:59:59 +0000</pubDate>
<dc:creator>andersson</dc:creator>
<guid isPermaLink="false">19347@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Well, just to tell anyone who - in the future - might be stuck on the same or a similar problem.&#60;/p&#62;
&#60;p&#62;I went with the following workaround:&#60;/p&#62;
&#60;p&#62;Find a hook (action/filter) that gets called early in the process like bb_location.&#60;br /&#62;
Define a filter function for it.&#60;br /&#62;
In that function, add the following peace of code.&#60;/p&#62;
&#60;p&#62;global $bb_locale;&#60;br /&#62;
$bb_locale-&#38;gt;datetime_formatstring['MY_TIME_FORMAT'] = __('j M, Y');&#60;/p&#62;
&#60;p&#62;Obviously, you can call your time format something else.&#60;/p&#62;
&#60;p&#62;Not the prettiest of solutions, but it works and I get to keep my bb_press installation free of code that I'll surely forget to update.
&#60;/p&#62;</description>
</item>
<item>
<title>andersson on "Extending BB_Locale"</title>
<link>http://bbpress.org/forums/topic/extending-bb_locale#post-19328</link>
<pubDate>Fri, 19 Sep 2008 13:19:11 +0000</pubDate>
<dc:creator>andersson</dc:creator>
<guid isPermaLink="false">19328@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Is there a way to extend BB_Locale?&#60;/p&#62;
&#60;p&#62;Today, BB_Locale calls init and that's that. No hooks/event handling at all, as far as I can tell.&#60;/p&#62;
&#60;p&#62;In method &#60;strong&#62;init&#60;/strong&#62;, among other things, the following loads:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$this-&#38;gt;datetime_formatstring[&#38;#39;datetime&#38;#39;] = __(&#38;#39;F j, Y - h:i A&#38;#39;);&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;$this-&#38;gt;datetime_formatstring[&#38;#39;date&#38;#39;] = __(&#38;#39;F j, Y&#38;#39;);&#60;/code&#62;&#60;br /&#62;
&#60;code&#62;$this-&#38;gt;datetime_formatstring[&#38;#39;time&#38;#39;] = __(&#38;#39;h:i A&#38;#39;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;The Question&#60;/strong&#62;&#60;br /&#62;
What if anything can I do if I want to have a &#60;code&#62;datetime_formatstring[&#38;#39;special-date&#38;#39;] = __(&#38;#39;Y F j - h&#38;#39;);&#60;/code&#62; added to BB_Locale. I'm using the three existing formats as listed above already and I want to add a fourth alternative without adding a row in core BB-files.&#60;/p&#62;
&#60;p&#62;Just to be clear, I want to be able to do this:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;_e(&#38;quot;Today&#38;#39;s date, formatted in a special way is:&#38;quot;) . bb_datetime_format_i18n( bb_current_time(), &#38;#39;special-date&#38;#39; );&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Am I missing something obvious here or is the only solution right now to modify the locale.php file?&#60;/p&#62;
&#60;p&#62;Appreciate the help.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "can you hold topics for Admin to approve?"</title>
<link>http://bbpress.org/forums/topic/can-you-hold-topics-for-admin-to-approve#post-18548</link>
<pubDate>Thu, 21 Aug 2008 22:17:26 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">18548@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#60;a href=&#34;http://bbpress.org/plugins/topic/bb-moderation-hold&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/topic/bb-moderation-hold&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>saturnstroll on "can you hold topics for Admin to approve?"</title>
<link>http://bbpress.org/forums/topic/can-you-hold-topics-for-admin-to-approve#post-18547</link>
<pubDate>Thu, 21 Aug 2008 20:42:03 +0000</pubDate>
<dc:creator>saturnstroll</dc:creator>
<guid isPermaLink="false">18547@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Does bbpress allow for... or is there a plugin to allow for...&#60;br /&#62;
holding a topic entry for Admin to approve before displaying on the frontend?&#60;/p&#62;
&#60;p&#62;I'm wanting to create a 'picture contest' entry page.&#60;br /&#62;
Memebers login, open then page, and upload an image to be voted/rated.&#60;/p&#62;
&#60;p&#62;I'd like for Admin to approve each before making each entry visible on the frontend.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Parental Advisory"</title>
<link>http://bbpress.org/forums/topic/parental-advisory#post-17829</link>
<pubDate>Thu, 31 Jul 2008 12:02:12 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">17829@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This plugin could be modified to do that &#60;a href=&#34;http://bbpress.org/plugins/topic/censor&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/topic/censor&#60;/a&#62; where it could set a topicmeta if bad words were found after a new post is saved or edited.
&#60;/p&#62;</description>
</item>
<item>
<title>wilcosky on "Parental Advisory"</title>
<link>http://bbpress.org/forums/topic/parental-advisory#post-17824</link>
<pubDate>Thu, 31 Jul 2008 08:48:28 +0000</pubDate>
<dc:creator>wilcosky</dc:creator>
<guid isPermaLink="false">17824@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I don't kn0w if this is proper or not to ask for plug-ins... but, here I go...&#60;/p&#62;
&#60;p&#62;I think it would be nice to have a &#34;Parental Advisory&#34; plugin. I have the &#34;censor&#34; plugin (maybe it could be added to the censor plugin by someone)... basically anytime a post is made with certain bad words in it, either an icon, or just the words &#34;parental advisory&#34; automatically show up next to the post's title. Or, parental advisory is kinda  of long to put along with a title, maybe it can just say 18+, for example&#60;/p&#62;
&#60;p&#62;[18+] The topic's title&#60;/p&#62;
&#60;p&#62;That way it's letting people know that this post may contain content only suitable for people 18 or older.&#60;/p&#62;
&#60;p&#62;Any thoughts?
&#60;/p&#62;</description>
</item>
<item>
<title>bloggsbe on "Profile hook/filter"</title>
<link>http://bbpress.org/forums/topic/profile-hookfilter#post-16155</link>
<pubDate>Mon, 12 May 2008 12:10:52 +0000</pubDate>
<dc:creator>bloggsbe</dc:creator>
<guid isPermaLink="false">16155@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;@sambauers&#60;/p&#62;
&#60;p&#62;Yes, I know, but the one I used in &#60;a href=&#34;http://bbpress.org/forums/topic/bb-twitter-a-twitter-plugin#post-15988&#34;&#62;bb-twitter&#60;/a&#62; is not so &#34;bad&#34;. I just hooked in to the show avatar function, and made sure that it only shows on the profile page, and no other pages. And that is just to show the latest tweet from that user. &#60;/p&#62;
&#60;p&#62;The admin/profile part is using the right hooks so the user can control the twittername and chose to show or not to show the tweet!&#60;/p&#62;
&#60;p&#62;I really hope there will be some hooks/filters for the profile page one day :-)&#60;/p&#62;
&#60;p&#62;--&#60;br /&#62;
Rune
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Profile hook/filter"</title>
<link>http://bbpress.org/forums/topic/profile-hookfilter#post-16140</link>
<pubDate>Mon, 12 May 2008 02:14:19 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">16140@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Dirty hacks are prone to break from release to release... :)
&#60;/p&#62;</description>
</item>
<item>
<title>bloggsbe on "Profile hook/filter"</title>
<link>http://bbpress.org/forums/topic/profile-hookfilter#post-16106</link>
<pubDate>Fri, 09 May 2008 21:53:29 +0000</pubDate>
<dc:creator>bloggsbe</dc:creator>
<guid isPermaLink="false">16106@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;So I noticed. But I found a kind of dirty hack that I used in the bb-twitter plugin. It works, but it's not the best way to do it :-)&#60;/p&#62;
&#60;p&#62;--&#60;br /&#62;
Rune
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Profile hook/filter"</title>
<link>http://bbpress.org/forums/topic/profile-hookfilter#post-16059</link>
<pubDate>Thu, 08 May 2008 18:16:01 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">16059@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The profile page is very difficult if not impossible to hook into as it needs some work (and apparently might change by 1.0)&#60;/p&#62;
&#60;p&#62;You'll have to do template edits.
&#60;/p&#62;</description>
</item>
<item>
<title>bloggsbe on "Profile hook/filter"</title>
<link>http://bbpress.org/forums/topic/profile-hookfilter#post-15978</link>
<pubDate>Mon, 05 May 2008 09:22:38 +0000</pubDate>
<dc:creator>bloggsbe</dc:creator>
<guid isPermaLink="false">15978@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi!&#60;/p&#62;
&#60;p&#62;I'm working on a plugin that I want to show some info on the profile page. The only hook I've found that lets me do that is &#60;code&#62;get_profile_info_keys&#60;/code&#62;, but that puts the info on top of the profile page (seems like it does it before the header) &#60;strong&#62;and&#60;/strong&#62; where I actually want it.&#60;/p&#62;
&#60;p&#62;Anyone have any ideas on what I can use to get my &#34;stuff&#34; in the profile page?&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Rune
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "rescuing people from spam"</title>
<link>http://bbpress.org/forums/topic/rescuing-people-from-spam#post-11877</link>
<pubDate>Sat, 10 Nov 2007 09:12:31 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">11877@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This wouldn't be related to &#34;bozo&#34; issues would it?&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/forums/topic/fix-or-remove-bozo-function-before-it-kills-bbpress&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/fix-or-remove-bozo-function-before-it-kills-bbpress&#60;/a&#62;&#60;br /&#62;
Bozo is first thing I disable on a new bbpress install.
&#60;/p&#62;</description>
</item>
<item>
<title>esck on "rescuing people from spam"</title>
<link>http://bbpress.org/forums/topic/rescuing-people-from-spam#post-11868</link>
<pubDate>Fri, 09 Nov 2007 16:37:00 +0000</pubDate>
<dc:creator>esck</dc:creator>
<guid isPermaLink="false">11868@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;my posts are still marked as spam even though I'm the key master and that I've disabled akismet :'(
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "rescuing people from spam"</title>
<link>http://bbpress.org/forums/topic/rescuing-people-from-spam#post-7751</link>
<pubDate>Wed, 30 May 2007 15:58:48 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">7751@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Sorry, I eat my words, the changes are to trust all members as well. Which seems odd to me for the reasons I just mentioned. Oh well...
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "rescuing people from spam"</title>
<link>http://bbpress.org/forums/topic/rescuing-people-from-spam#post-7750</link>
<pubDate>Wed, 30 May 2007 15:55:42 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">7750@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The change in that ticket only covers moderators, admins and keymasters. Not members.&#60;/p&#62;
&#60;p&#62;This is as it should be because members are not and should not be trusted by default. The automation of member signup, login and post is possible. Not to mention real human spamming by ill-intentioned &#34;members&#34;.&#60;/p&#62;
&#60;p&#62;So this is behaviour by design as far as I can tell.
&#60;/p&#62;</description>
</item>
<item>
<title>scott11 on "rescuing people from spam"</title>
<link>http://bbpress.org/forums/topic/rescuing-people-from-spam#post-7748</link>
<pubDate>Wed, 30 May 2007 15:49:46 +0000</pubDate>
<dc:creator>scott11</dc:creator>
<guid isPermaLink="false">7748@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This is the right URL:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://trac.bbpress.org/ticket/599/&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/ticket/599/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Yor forgot the backslash!  ; )
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "rescuing people from spam"</title>
<link>http://bbpress.org/forums/topic/rescuing-people-from-spam#post-7693</link>
<pubDate>Mon, 28 May 2007 04:38:28 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">7693@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;cweb: I think this is fixed in the latest trac version and will be in 1.0:&#60;br /&#62;
&#60;a href=&#34;http://trac.bbpress.org/ticket/599&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/ticket/599&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>cweb on "rescuing people from spam"</title>
<link>http://bbpress.org/forums/topic/rescuing-people-from-spam#post-7689</link>
<pubDate>Mon, 28 May 2007 04:06:24 +0000</pubDate>
<dc:creator>cweb</dc:creator>
<guid isPermaLink="false">7689@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ya I'm having the same problem.  Seems there's no logic that says:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;If (post is not from member)
   then pass post to spam rules
   else always accept&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Either that or it's broken.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "rescuing people from spam"</title>
<link>http://bbpress.org/forums/topic/rescuing-people-from-spam#post-7487</link>
<pubDate>Thu, 17 May 2007 20:04:13 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">7487@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I don't know how to permanently set that. However, if you get no other spam you could turn off Akismet by removing your Automattic key in config.php, as a temporary fix?
&#60;/p&#62;</description>
</item>
<item>
<title>bedbugger on "rescuing people from spam"</title>
<link>http://bbpress.org/forums/topic/rescuing-people-from-spam#post-7484</link>
<pubDate>Thu, 17 May 2007 19:03:34 +0000</pubDate>
<dc:creator>bedbugger</dc:creator>
<guid isPermaLink="false">7484@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have a few users whose posts are continually marked as spam.  In the Admin menu, I can find the spam under Akismet Spam.&#60;br /&#62;
But unlike the spam filter in I use in Wordpress, I do not know where or how to solve the problem.  How do I convince bbpress that these users are OK?&#60;br /&#62;
Many thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>so1o on "Help with a plugin"</title>
<link>http://bbpress.org/forums/topic/help-with-a-plugin#post-1750</link>
<pubDate>Thu, 30 Nov 2006 03:03:29 +0000</pubDate>
<dc:creator>so1o</dc:creator>
<guid isPermaLink="false">1750@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;cheers
&#60;/p&#62;</description>
</item>
<item>
<title>spencerp on "Help with a plugin"</title>
<link>http://bbpress.org/forums/topic/help-with-a-plugin#post-1747</link>
<pubDate>Thu, 30 Nov 2006 01:15:33 +0000</pubDate>
<dc:creator>spencerp</dc:creator>
<guid isPermaLink="false">1747@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;so1o, you're awesome! Thanks alot! &#60;/p&#62;
&#60;p&#62;In /index.php, made it like this:&#60;br /&#62;
$topics = get_latest_topics(0,1,3,4,'2');&#60;/p&#62;
&#60;p&#62;Now the ones from the &#34;Blog Article Discussion&#34; forum, are NOT showing in the &#34;Latest Discussion&#34;  section.. :) ;)  Thanks again!&#60;/p&#62;
&#60;p&#62;However.. when I did try that plugin option, it deleted ALL the threads, except for the Blog Article Discussion posts.. but, I think that's because I used the wrong id for the forum.. lol..&#60;/p&#62;
&#60;p&#62;When hovering over the &#34;Blog Article Discussion&#34; forum, it shows as &#34;3&#34; being the &#34;id&#34;.. but, in the admin control panel.. I assigned &#34;2&#34; for it.. so, that's what the problem was..  Anyway.. she's working now! Thanks again!!&#60;/p&#62;
&#60;p&#62;spencerp
&#60;/p&#62;</description>
</item>

</channel>
</rss>
