Advertisement
Guest User

buddypress.php

a guest
Jul 28th, 2013
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. /**
  3.  * Template for all BuddyPress Pages
  4.  *
  5.  * @package BuddyPress
  6.  *
  7.  */
  8. get_header( 'buddypress' ); ?>
  9.  
  10.     <div id="content">
  11.         <div class="padder">
  12.  
  13.             <div id="main">
  14.                 <?php while ( have_posts() ) : the_post(); ?>
  15.                     <h3><?php the_title(); ?></h3>
  16.                     <?php the_content(); ?>
  17.                 <?php endwhile; // end of the loop. ?>
  18.             </div>
  19.  
  20.             <?php get_sidebar( 'buddypress' ); ?>
  21.  
  22.         </div><!-- .padder -->
  23.     </div><!-- #content -->
  24.  
  25. <?php get_footer( 'buddypress' ); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement