# bbp-core/2.4.3/templates/content-single-view.php

Forumax – AI Powered Advanced Community Forum Plugin, version 2.4.3. 35 lines.

- Page: https://pluginprobe.com/plugins/bbp-core/2.4.3/code/templates/content-single-view.php
- Raw: https://pluginprobe.com/plugins/bbp-core/2.4.3/raw/templates/content-single-view.php
- Modified: 2026-01-28T15:54:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/bbp-core/2.4.3/code/templates/content-single-view.php#L10-L20`.

```php
<?php

/**
 * Single View Content Part
 *
 * @package bbPress
 * @subpackage Theme
 */

// Exit if accessed directly
defined( 'ABSPATH' ) || exit;
?>

<div id="bbpress-forums" class="bbpress-wrapper">

	<?php bbp_set_query_name( bbp_get_view_rewrite_id() ); ?>

	<?php if ( bbp_view_query() ) : ?>

		<?php bbp_get_template_part( 'pagination', 'topics'    ); ?>

		<?php bbp_get_template_part( 'loop',       'topics'    ); ?>

		<?php bbp_get_template_part( 'pagination', 'topics'    ); ?>

	<?php else : ?>

		<?php bbp_get_template_part( 'feedback',   'no-topics' ); ?>

	<?php endif; ?>

	<?php bbp_reset_query_name(); ?>

</div>

```
