Advertisement
Guest User

buddypress.php

a guest
Jul 28th, 2013
152
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.             <?php while ( have_posts() ) : the_post(); ?>
  14.  
  15.                 <h3><?php the_title(); ?></h3>
  16.  
  17.                 <?php the_content(); ?>
  18.  
  19.             <?php endwhile; // end of the loop. ?>
  20.  
  21.  
  22.         </div><!-- .padder -->
  23.     </div><!-- #content -->
  24.  
  25. <?php get_sidebar( 'buddypress' ); ?>
  26.  
  27. <?php get_footer( 'buddypress' ); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement