<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Recent posts - General Discussions				            </title>
            <link>https://wpforo.com/community/general-discussions/recent-posts-2/</link>
            <description>Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Tue, 12 May 2026 00:38:07 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Recent posts</title>
                        <link>https://wpforo.com/community/general-discussions/recent-posts-2/#post-18790</link>
                        <pubDate>Mon, 27 Aug 2018 20:11:40 +0000</pubDate>
                        <description><![CDATA[Hi ThePath I&#039;m trying to do the same as you; are displaying the recent posts from two of my wpForo forums, &#039;Announcements&#039; &amp; &#039;News&#039;, on the front page of my site. I&#039;ve tried using your c...]]></description>
                        <content:encoded><![CDATA[<p>Hi ThePath</p><p> </p><p>I'm trying to do the same as you; are displaying the recent posts from two of my wpForo forums, 'Announcements' &amp; 'News', on the front page of my site. I've tried using your code but nothing seems to happen. I've tried using it with PHP code snippets (Insert PHP)  but nothing seems to be displayed. I am a novice at this so any help would be appreciated.</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/general-discussions/">General Discussions</category>                        <dc:creator>z4driver</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/general-discussions/recent-posts-2/#post-18790</guid>
                    </item>
				                    <item>
                        <title>RE: Recent posts</title>
                        <link>https://wpforo.com/community/general-discussions/recent-posts-2/#post-18200</link>
                        <pubDate>Wed, 08 Aug 2018 12:03:22 +0000</pubDate>
                        <description><![CDATA[Worked it out, if anyone else needs this here is the code:$posts_args = array( &#039;forumid&#039; =&gt; &#039;4&#039;,&#039;order&#039; =&gt; &#039;DESC&#039;, // ASC DESC&#039;row_count&#039; =&gt; 1 );$recent_posts = $wpforo-&gt;topic-&amp;g...]]></description>
                        <content:encoded><![CDATA[<p>Worked it out, if anyone else needs this here is the code:</p><pre>$posts_args = array( <br />'forumid' =&gt; '4',<br />'order' =&gt; 'DESC', // ASC DESC<br />'row_count' =&gt; 1 <br />);<br />$recent_posts = $wpforo-&gt;topic-&gt;get_topics($posts_args);</pre>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/general-discussions/">General Discussions</category>                        <dc:creator>ThePath</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/general-discussions/recent-posts-2/#post-18200</guid>
                    </item>
				                    <item>
                        <title>RE: Recent posts</title>
                        <link>https://wpforo.com/community/general-discussions/recent-posts-2/#post-18197</link>
                        <pubDate>Wed, 08 Aug 2018 11:05:51 +0000</pubDate>
                        <description><![CDATA[Hi,I wonder if you have the time to expand on this a little? I have tried adding all sorts to the $post_args to make the topics forum specific.$posts_args = array( 				//&#039;parentid&#039;	 =&gt; &#039;5...]]></description>
                        <content:encoded><![CDATA[<p>Hi,</p><p>I wonder if you have the time to expand on this a little? I have tried adding all sorts to the $post_args to make the topics forum specific.</p><pre>$posts_args = array( <br />				//'parentid'	 =&gt; '55',<br />				'forumid'	 =&gt; '2', <br />//'include' =&gt; array(2), <br />				'orderby'        =&gt; 'postid',<br />				'order'        =&gt; 'DESC', <br />				'row_count'    =&gt; 10       <br />		   	);<br />		   	$recent_posts = $wpforo-&gt;post-&gt;get_posts($posts_args);</pre><p>As you can see I've been playing about with parentid, forumid and include to no avail.</p><p>Any tips much appreciated!</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/general-discussions/">General Discussions</category>                        <dc:creator>ThePath</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/general-discussions/recent-posts-2/#post-18197</guid>
                    </item>
				                    <item>
                        <title>RE: Recent posts</title>
                        <link>https://wpforo.com/community/general-discussions/recent-posts-2/#post-6060</link>
                        <pubDate>Sun, 11 Dec 2016 14:33:45 +0000</pubDate>
                        <description><![CDATA[I can only point a function to return an Array of recent posts. but I can&#039;t write a custom code. I&#039;m sorry but this is not included in our support, our time is too limited.  I hope you&#039;re fa...]]></description>
                        <content:encoded><![CDATA[<p>I can only point a function to return an Array of recent posts. but I can't write a custom code. I'm sorry but this is not included in our support, our time is too limited.  I hope you're familiar with PHP.</p><p>You should use this function:</p><pre>global $wpforo;<br /> $posts_args = array( <br />          'orderby'        =&gt; 'created',     // forumid, order, parentid<br />          'order'        =&gt; 'DESC',         // ASC DESC<br />          'row_count'    =&gt; 10         <br />);<br />$recent_posts = $wpforo-&gt;post-&gt;get_posts($posts_args);</pre>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/general-discussions/">General Discussions</category>                        <dc:creator>Robert</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/general-discussions/recent-posts-2/#post-6060</guid>
                    </item>
				                    <item>
                        <title>Recent posts</title>
                        <link>https://wpforo.com/community/general-discussions/recent-posts-2/#post-6040</link>
                        <pubDate>Sat, 10 Dec 2016 16:25:12 +0000</pubDate>
                        <description><![CDATA[I would like to request a way to display the recent posts out of a certain forum/subforum on a different page; I have a forum with all announcements, and I would like to display my latest an...]]></description>
                        <content:encoded><![CDATA[<p>I would like to request a way to display the recent posts out of a certain forum/subforum on a different page; I have a forum with all announcements, and I would like to display my latest announcements on the front page of my website.</p><p>Anyway I could do this? Any chance it will be implemented in later versions?</p><p>Thanks :)</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/general-discussions/">General Discussions</category>                        <dc:creator>SmilingSlimeGuy</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/general-discussions/recent-posts-2/#post-6040</guid>
                    </item>
							        </channel>
        </rss>
		