Advertisement
niuserre

bbPress.php

Oct 8th, 2013
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.53 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Template Name: bbPress
  4.  * Description: A full-width template for bbPress to use
  5.  *
  6.  * @package Adept
  7.  
  8.  */
  9.  
  10. get_header(); ?>
  11.  
  12.     <div id="main-wrap">
  13.         <div id="content" class="fullwidth">
  14.  
  15.         <?php /* Start the Loop */ ?>
  16.         <?php while ( have_posts() ) : the_post(); ?>
  17.  
  18.             <?php get_template_part( 'content', 'page' ); ?>
  19.  
  20.             <?php comments_template( '', true ); ?>
  21.  
  22.         <?php endwhile; // end of the loop. ?>
  23.  
  24.         </div><!-- end #content .fullwidth -->
  25.     </div><!-- end #main-wrap -->
  26.  
  27. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement