Advertisement
Guest User

buddypress.php

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