PluginProbe
bbPress / 2.2
bbPress v2.2
trunk 2.0 2.0-beta-1 2.0-beta-2b 2.0-beta-3 2.0-beta-3b 2.0-rc-2 2.0-rc-3 2.0-rc-4 2.0-rc-5 2.0.1 2.0.2 2.0.3 2.1 2.1-beta-1 2.1-rc1 2.1-rc2 2.1-rc3 2.1-rc4 2.1.1 2.1.2 2.1.3 2.2 2.2.1 2.2.2 All 71 releases
bbpress / templates / default / extras / single-user-edit.php

single-user-edit.php in bbPress 2.2, at templates/default/extras/single-user-edit.php

26 lines 523 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * bbPress User Profile Edit
5 *
6 * @package bbPress
7 * @subpackage Theme
8 */
9
10 get_header(); ?>
11
12 <?php do_action( 'bbp_before_main_content' ); ?>
13
14 <div id="bbp-user-<?php bbp_current_user_id(); ?>" class="bbp-single-user">
15 <div class="entry-content">
16
17 <?php bbp_get_template_part( 'content', 'single-user-edit' ); ?>
18
19 </div><!-- .entry-content -->
20 </div><!-- #bbp-user-<?php bbp_current_user_id(); ?> -->
21
22 <?php do_action( 'bbp_after_main_content' ); ?>
23
24 <?php get_sidebar(); ?>
25 <?php get_footer(); ?>
26