<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>bbPress &#8211; Content Views Pro</title>
	<atom:link href="https://contentviewspro.com/documentation/tags/bbpress/feed/" rel="self" type="application/rss+xml" />
	<link>https://contentviewspro.com/documentation</link>
	<description>Most Popular Filter &#38; Grid Plugin For WordPress</description>
	<lastBuildDate>Fri, 29 Dec 2023 04:13:38 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>Show private bbPress forums</title>
		<link>https://contentviewspro.com/documentation/article/how-to-show-private-bbpress-forums/</link>
		
		<dc:creator><![CDATA[admin1]]></dc:creator>
		<pubDate>Mon, 23 Oct 2017 09:49:47 +0000</pubDate>
				<guid isPermaLink="false">http://docs.contentviewspro.com/?p=2461</guid>

					<description><![CDATA[Content Views Pro helps you to show forums, topics, replies of the bbPress plugin easily without coding. By default, bbPress excludes private forums from all queries. To show these private forums in View output, please add this code to file functions.php in the directory of your active theme: // Content Views Pro - show private &#8230;<p class="read-more"> <a class="" href="https://contentviewspro.com/documentation/article/how-to-show-private-bbpress-forums/"> <span class="screen-reader-text">Show private bbPress forums</span> Read More &#187;</a></p>]]></description>
										<content:encoded><![CDATA[<p>Content Views Pro helps you to show forums, topics, replies of the bbPress plugin easily without coding.<br />
By default, bbPress excludes private forums from all queries. To show these private forums in View output, please add this code to file <strong>functions.php</strong> in the directory of your active theme:</p>
<pre style="font-size:13px">
// Content Views Pro - show private bbPress forums
add_filter( 'bbp_include_all_forums', 'cvp_bbpress_show_private_forums', 10, 2 );
function cvp_bbpress_show_private_forums( $args, $posts_query ) {
	if ( $posts_query->get( 'by_contentviews' ) ) {
		$args = true;
	}

	return $args;
}
</pre>
<p>Best regards,</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
