PluginProbe
bbPress / 2.6.17
bbPress v2.6.17
2.6.17 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 All 72 releases
bbpress / templates / default / bbpress / form-protected.php

form-protected.php in bbPress 2.6.17, at templates/default/bbpress/form-protected.php

22 lines 372 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Password Protected
5 *
6 * @package bbPress
7 * @subpackage Theme
8 */
9
10 // Exit if accessed directly
11 defined( 'ABSPATH' ) || exit;
12
13 ?>
14
15 <div id="bbpress-forums" class="bbpress-wrapper">
16 <fieldset class="bbp-form" id="bbp-protected">
17 <Legend><?php esc_html_e( 'Protected', 'bbpress' ); ?></legend>
18
19 <?php echo get_the_password_form(); ?>
20
21 </fieldset>
22 </div>