[ Index ] |
PHP Cross Reference of BBPress |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** 4 * Template Name: bbPress - User Register 5 * 6 * @package bbPress 7 * @subpackage Theme 8 */ 9 10 // No logged in users 11 bbp_logged_in_redirect(); 12 13 // Begin Template 14 get_header(); ?> 15 16 <?php do_action( 'bbp_before_main_content' ); ?> 17 18 <?php do_action( 'bbp_template_notices' ); ?> 19 20 <?php while ( have_posts() ) : the_post(); ?> 21 22 <div id="bbp-register" class="bbp-register"> 23 <h1 class="entry-title"><?php the_title(); ?></h1> 24 <div class="entry-content"> 25 26 <?php the_content(); ?> 27 28 <div id="bbpress-forums" class="bbpress-wrapper"> 29 30 <?php bbp_breadcrumb(); ?> 31 32 <?php bbp_get_template_part( 'form', 'user-register' ); ?> 33 34 </div> 35 </div> 36 </div><!-- #bbp-register --> 37 38 <?php endwhile; ?> 39 40 <?php do_action( 'bbp_after_main_content' ); ?> 41 42 <?php get_sidebar(); ?> 43 <?php get_footer();
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sat Dec 21 01:00:52 2024 | Cross-referenced by PHPXref 0.7.1 |