# bbpress/2.6.17/templates/default/extras/single-user.php

bbPress, version 2.6.17. 26 lines.

- Page: https://pluginprobe.com/plugins/bbpress/2.6.17/code/templates/default/extras/single-user.php
- Raw: https://pluginprobe.com/plugins/bbpress/2.6.17/raw/templates/default/extras/single-user.php
- Modified: 2017-06-12T22:10:40+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/bbpress/2.6.17/code/templates/default/extras/single-user.php#L10-L20`.

```php
<?php

/**
 * Single User
 *
 * @package bbPress
 * @subpackage Theme
 */

get_header(); ?>

	<?php do_action( 'bbp_before_main_content' ); ?>

	<div id="bbp-user-<?php bbp_current_user_id(); ?>" class="bbp-single-user">
		<div class="entry-content">

			<?php bbp_get_template_part( 'content', 'single-user' ); ?>

		</div><!-- .entry-content -->
	</div><!-- #bbp-user-<?php bbp_current_user_id(); ?> -->

	<?php do_action( 'bbp_after_main_content' ); ?>

<?php get_sidebar(); ?>
<?php get_footer();

```
