<?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>
									My sitemap is showing 0 posts on my forum, how do i fix this? - How-to and Troubleshooting - wpForo 2.0				            </title>
            <link>https://wpforo.com/community/how-to-and-troubleshooting-2/my-sitemap-is-showing-0-posts-on-my-forum-how-do-i-fix-this/</link>
            <description>Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Sat, 05 Sep 2026 17:49:15 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: My sitemap is showing 0 posts on my forum, how do i fix this?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/my-sitemap-is-showing-0-posts-on-my-forum-how-do-i-fix-this/#post-104071</link>
                        <pubDate>Wed, 19 Jul 2023 12:35:13 +0000</pubDate>
                        <description><![CDATA[It worked, thanks very much]]></description>
                        <content:encoded><![CDATA[<p>It worked, thanks very much</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>rocodeify</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/my-sitemap-is-showing-0-posts-on-my-forum-how-do-i-fix-this/#post-104071</guid>
                    </item>
				                    <item>
                        <title>RE: My sitemap is showing 0 posts on my forum, how do i fix this?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/my-sitemap-is-showing-0-posts-on-my-forum-how-do-i-fix-this/#post-104070</link>
                        <pubDate>Wed, 19 Jul 2023 12:15:17 +0000</pubDate>
                        <description><![CDATA[@rocodeify Let us know if it works for you :)]]></description>
                        <content:encoded><![CDATA[@rocodeify Let us know if it works for you :)]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>dimalifragis</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/my-sitemap-is-showing-0-posts-on-my-forum-how-do-i-fix-this/#post-104070</guid>
                    </item>
				                    <item>
                        <title>RE: My sitemap is showing 0 posts on my forum, how do i fix this?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/my-sitemap-is-showing-0-posts-on-my-forum-how-do-i-fix-this/#post-104069</link>
                        <pubDate>Wed, 19 Jul 2023 12:12:45 +0000</pubDate>
                        <description><![CDATA[@dimalifragis okay, thanks very much... I really appreciate. will check it out now]]></description>
                        <content:encoded><![CDATA[@dimalifragis okay, thanks very much... I really appreciate. will check it out now]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>rocodeify</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/my-sitemap-is-showing-0-posts-on-my-forum-how-do-i-fix-this/#post-104069</guid>
                    </item>
				                    <item>
                        <title>RE: My sitemap is showing 0 posts on my forum, how do i fix this?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/my-sitemap-is-showing-0-posts-on-my-forum-how-do-i-fix-this/#post-104068</link>
                        <pubDate>Wed, 19 Jul 2023 12:10:19 +0000</pubDate>
                        <description><![CDATA[Let me try again.
Use this plugin
to add this small code:
 
add_filter(&#039;wpforo_content_after&#039;, function( $content ){
    return preg_replace_callback(
&#039;#&lt;a*\sclass=...]]></description>
                        <content:encoded><![CDATA[<p>Let me try again.</p>
<p>Use this plugin</p>
<p>https://wordpress.org/plugins/code-snippets/</p>
<p>to add this small code:</p>
<p> </p>
<pre contenteditable="false">add_filter('wpforo_content_after', function( $content ){
    return preg_replace_callback(
'#&lt;a*\sclass=(?:*\s)?wpforo-default-attachment(?:\s*)?*\shref=(+)*&gt;.*?&lt;/a&gt;#isu',
        function( $match ){
                $html     = $match;
            $file     = $match;
            $pathinfo = pathinfo( $file );
            if( wpforo_is_image($pathinfo) ) {
                $html = sprintf(
                    '&lt;a href="%1$s" target="_blank"&gt;&lt;img class="wpforo-default-image-attachment" src="%1$s" alt="%2$s" title="%2$s"&gt;&lt;/a&gt;',
                    esc_url($file),
                    esc_attr($pathinfo)
                );
            }
            return $html;
        },
        $content
    );
}, 11);</pre>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>dimalifragis</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/my-sitemap-is-showing-0-posts-on-my-forum-how-do-i-fix-this/#post-104068</guid>
                    </item>
				                    <item>
                        <title>RE: My sitemap is showing 0 posts on my forum, how do i fix this?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/my-sitemap-is-showing-0-posts-on-my-forum-how-do-i-fix-this/#post-104064</link>
                        <pubDate>Wed, 19 Jul 2023 12:02:01 +0000</pubDate>
                        <description><![CDATA[@dimalifragis please on my wpforo, i want images to show up when uploaded instead of link.. how can I go about it please]]></description>
                        <content:encoded><![CDATA[@dimalifragis <span>please on my wpforo, i want images to show up when uploaded instead of link.. how can I go about it please</span>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>rocodeify</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/my-sitemap-is-showing-0-posts-on-my-forum-how-do-i-fix-this/#post-104064</guid>
                    </item>
				                    <item>
                        <title>RE: My sitemap is showing 0 posts on my forum, how do i fix this?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/my-sitemap-is-showing-0-posts-on-my-forum-how-do-i-fix-this/#post-104062</link>
                        <pubDate>Wed, 19 Jul 2023 11:59:56 +0000</pubDate>
                        <description><![CDATA[@dimalifragis okay, thanks very much]]></description>
                        <content:encoded><![CDATA[<p>@dimalifragis okay, thanks very much</p>
<p> </p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>rocodeify</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/my-sitemap-is-showing-0-posts-on-my-forum-how-do-i-fix-this/#post-104062</guid>
                    </item>
				                    <item>
                        <title>RE: My sitemap is showing 0 posts on my forum, how do i fix this?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/my-sitemap-is-showing-0-posts-on-my-forum-how-do-i-fix-this/#post-104061</link>
                        <pubDate>Wed, 19 Jul 2023 11:59:40 +0000</pubDate>
                        <description><![CDATA[@dimalifragis Okay, thanks very much]]></description>
                        <content:encoded><![CDATA[@dimalifragis Okay, thanks very much]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>rocodeify</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/my-sitemap-is-showing-0-posts-on-my-forum-how-do-i-fix-this/#post-104061</guid>
                    </item>
				                    <item>
                        <title>RE: My sitemap is showing 0 posts on my forum, how do i fix this?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/my-sitemap-is-showing-0-posts-on-my-forum-how-do-i-fix-this/#post-104060</link>
                        <pubDate>Wed, 19 Jul 2023 11:58:15 +0000</pubDate>
                        <description><![CDATA[I would recommend Fastest Cache or Automaticc&#039;s WP Super Cache. Whatever works for you.
And still, exclude wpForo from them.]]></description>
                        <content:encoded><![CDATA[
<p>@dimalifragis Thanks for your review, which do you recommend, please apart from W3TC</p>
<p></p>
<p>I would recommend Fastest Cache or Automaticc's WP Super Cache. Whatever works for you.</p>
<p>And still, exclude wpForo from them.</p>
<p> </p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>dimalifragis</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/my-sitemap-is-showing-0-posts-on-my-forum-how-do-i-fix-this/#post-104060</guid>
                    </item>
				                    <item>
                        <title>RE: My sitemap is showing 0 posts on my forum, how do i fix this?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/my-sitemap-is-showing-0-posts-on-my-forum-how-do-i-fix-this/#post-104059</link>
                        <pubDate>Wed, 19 Jul 2023 11:56:09 +0000</pubDate>
                        <description><![CDATA[No way. I would recommend to use SEO Framework instead, that works with wpForo.
Or if you do not like Seo Framework, use YOAST.]]></description>
                        <content:encoded><![CDATA[
<p>@dimalifragis Thanks, it worked but is there any way I can exclude wpforo sitemap on All in One Seo apart from deactivating it entirely</p>
<p></p>
<p> </p>
<p>No way. I would recommend to use SEO Framework instead, that works with wpForo.</p>
<p>Or if you do not like Seo Framework, use YOAST.</p>
<p> </p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>dimalifragis</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/my-sitemap-is-showing-0-posts-on-my-forum-how-do-i-fix-this/#post-104059</guid>
                    </item>
				                    <item>
                        <title>RE: My sitemap is showing 0 posts on my forum, how do i fix this?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/my-sitemap-is-showing-0-posts-on-my-forum-how-do-i-fix-this/#post-104058</link>
                        <pubDate>Wed, 19 Jul 2023 11:43:35 +0000</pubDate>
                        <description><![CDATA[@dimalifragis Thanks for your review, which do you recommend, please apart from W3TC]]></description>
                        <content:encoded><![CDATA[@dimalifragis Thanks for your review, which do you recommend, please apart from W3TC]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>rocodeify</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/my-sitemap-is-showing-0-posts-on-my-forum-how-do-i-fix-this/#post-104058</guid>
                    </item>
							        </channel>
        </rss>
		