<?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 plugin browser Topic: Forum Last Poster</title>
<link>http://bbpress.org/plugins/</link>
<description>bbPress plugin browser Topic: Forum Last Poster</description>
<language>en</language>
<pubDate>Tue, 02 Dec 2008 18:28:52 +0000</pubDate>

<item>
<title>csseur3 on "Forum Last Poster"</title>
<link>http://bbpress.org/plugins/topic/forum-last-poster/#post-1764</link>
<pubDate>Wed, 20 Aug 2008 15:47:14 +0000</pubDate>
<dc:creator>csseur3</dc:creator>
<guid isPermaLink="false">1764@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;hey ck,&#60;/p&#62;
&#60;p&#62;when a forum was empty, we see the first post's title (the 'your-first-topic' by default) in the column. So i think it is interestig to create a &#34;error message&#34; like &#34;sorry, this forum is empty&#34; :p&#60;/p&#62;
&#60;p&#62;bye
&#60;/p&#62;</description>
</item>
<item>
<title>Anonymous on "Forum Last Poster"</title>
<link>http://bbpress.org/plugins/topic/forum-last-poster/#post-1620</link>
<pubDate>Mon, 04 Aug 2008 19:28:31 +0000</pubDate>
<dc:creator>Anonymous</dc:creator>
<guid isPermaLink="false">1620@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;Thanks, that did the trick.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Forum Last Poster"</title>
<link>http://bbpress.org/plugins/topic/forum-last-poster/#post-1619</link>
<pubDate>Mon, 04 Aug 2008 17:19:47 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">1619@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;markok, you could try something like this:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;td class=&#38;quot;num&#38;quot;&#38;gt;&#38;lt;?php if (!in_array($GLOBALS[&#38;#39;forum&#38;#39;]-&#38;gt;forum_id, $GLOBALS[&#38;#39;forums_that_are_categories&#38;#39;])) {
 ?&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php forum_last_post_link(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php forum_last_poster(); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;?php } ?&#38;gt;&#38;lt;br /&#38;gt;&#38;lt;?php forum_time(); ?&#38;gt;&#38;lt;/td&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Anonymous on "Forum Last Poster"</title>
<link>http://bbpress.org/plugins/topic/forum-last-poster/#post-1613</link>
<pubDate>Sun, 03 Aug 2008 15:19:09 +0000</pubDate>
<dc:creator>Anonymous</dc:creator>
<guid isPermaLink="false">1613@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;And another thing.&#60;br /&#62;
I have this line in my front-page.php&#60;br /&#62;
&#60;code&#62;&#38;lt;td class=&#38;quot;num&#38;quot;&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php forum_last_post_link(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php forum_last_poster(); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;br /&#38;gt;&#38;lt;?php forum_time(); ?&#38;gt;&#38;lt;/td&#38;gt;&#60;/code&#62;&#60;br /&#62;
And I have also this forum is category plugin.&#60;br /&#62;
And the problem is that, I dont want this last poster to show if forum is catogory.&#60;br /&#62;
Can you help me with this? I have been trying few things but I've failed.&#60;/p&#62;
&#60;p&#62;And this is the forum is category plugin: &#60;a href=&#34;http://bbpress.org/plugins/topic/forum-is-category/&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/topic/forum-is-category/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Forum Last Poster"</title>
<link>http://bbpress.org/plugins/topic/forum-last-poster/#post-1547</link>
<pubDate>Mon, 28 Jul 2008 00:38:14 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">1547@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;Thion, you can fetch the gravatar through a little indirect code as I don't have a function in there yet to grab all the user's info.&#60;br /&#62;
ie.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$last_topic=get_topic(forum_last_topic_id());
$last_topic_poster_id=$last_topic-&#38;gt;topic_last_poster;
$last_topic_poster_email=bb_get_user_email($last_topic_poster_id);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;then you use the email to get the gravatar:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;img src=&#38;quot;&#38;lt;?php echo &#38;quot;http://www.gravatar.com/avatar.php?gravatar_id=&#38;quot;.md5($last_topic_poster_email); ?&#38;gt;&#38;quot;&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>_ck_ on "Forum Last Poster"</title>
<link>http://bbpress.org/plugins/topic/forum-last-poster/#post-1546</link>
<pubDate>Mon, 28 Jul 2008 00:31:45 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">1546@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;csseur3 you can take advantage of the function &#60;code&#62;forum_last_topic_id()&#60;/code&#62; to fetch any info you'd like about the last topic in a forum.&#60;/p&#62;
&#60;p&#62;Here is an example of how to use it:&#60;br /&#62;
&#60;code&#62;topic_title(forum_last_topic_id());&#60;/code&#62;&#60;br /&#62;
That will echo the last topic title to the screen.&#60;/p&#62;
&#60;p&#62;Or to store it and manipulate it further:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$last_topic_title=get_topic_title(forum_last_topic_id());&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;(you'll need to do some PHP to limit the length, like the substr  function, see php.net)&#60;br /&#62;
&#60;code&#62;$last_topic_title=substr($last_topic_title,0,40);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;or you can fetch everything about the last topic:&#60;br /&#62;
&#60;code&#62;$last_topic=get_topic(forum_last_topic_id());&#60;/code&#62;&#60;br /&#62;
and  then you can determine things like how many posts it has:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;echo &#38;quot;Most recent topic has $last_topic-&#38;gt;topic_posts posts&#38;quot;;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>csseur3 on "Forum Last Poster"</title>
<link>http://bbpress.org/plugins/topic/forum-last-poster/#post-1543</link>
<pubDate>Sun, 27 Jul 2008 17:53:14 +0000</pubDate>
<dc:creator>csseur3</dc:creator>
<guid isPermaLink="false">1543@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;if we can have the title of the last post, in wich last comment was made?&#60;/p&#62;
&#60;p&#62;and it is possible to add a function to truncate this, for the title wich are too big? :)&#60;/p&#62;
&#60;p&#62;great plugin ck! hum, i think is great if this plugin is in bbpress bu default :D&#60;/p&#62;
&#60;p&#62;bye,&#60;br /&#62;
Fred
&#60;/p&#62;</description>
</item>
<item>
<title>Thion on "Forum Last Poster"</title>
<link>http://bbpress.org/plugins/topic/forum-last-poster/#post-1540</link>
<pubDate>Sun, 27 Jul 2008 15:38:35 +0000</pubDate>
<dc:creator>Thion</dc:creator>
<guid isPermaLink="false">1540@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;Is this stuff can be used to display gravatar of last poster? If so, how?
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Forum Last Poster"</title>
<link>http://bbpress.org/plugins/topic/forum-last-poster/#post-1539</link>
<pubDate>Sun, 27 Jul 2008 09:35:50 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">1539@http://bbpress.org/plugins/</guid>
<description>&#60;p&#62;You can see a demonstration of this plugin in action by looking at the forum list at the top of &#60;a href=&#34;http://bbshowcase.org/forums/&#34; rel=&#34;nofollow&#34;&#62;http://bbshowcase.org/forums/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;(notice the &#34;Last Poster&#34; column)&#60;/p&#62;
&#60;p&#62;The code used to make that column is:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;td class=&#38;quot;num&#38;quot;&#38;gt;&#38;lt;?php echo &#38;#39;&#38;lt;a href=&#38;quot;&#38;#39;.get_forum_last_post_link().&#38;#39;&#38;quot;&#38;gt;&#38;#39;.get_forum_last_poster().&#38;#39;&#38;lt;small&#38;gt;&#38;#39;.get_forum_time().&#38;#39; ago&#38;lt;/a&#38;gt;&#38;lt;/small&#38;gt;&#38;#39;; ?&#38;gt;&#38;lt;/td&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>_ck_ on "Forum Last Poster"</title>
<link>http://bbpress.org/plugins/topic/forum-last-poster/#post-1538</link>
<pubDate>Sun, 27 Jul 2008 00:27:15 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">1538@http://bbpress.org/plugins/</guid>
<description>Adds `forum_last_poster()`, `forum_time()`, `forum_last_post_link()` and other functions to bbPress to mimic the topic tables' FRESHNESS column. Requi</description>
</item>

</channel>
</rss>
