Advertisement
bibblehead

BP themes - bp-default-page.php

Jun 23rd, 2015
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. Interesting - This is the default page for buddypress-default themes - bp default
  2.  
  3. <?php get_header(); ?>
  4.  
  5. <div id="content">
  6. <div class="padder">
  7.  
  8. <?php do_action( 'bp_before_blog_page' ); ?>
  9.  
  10. <div class="page" id="blog-page" role="main">
  11.  
  12. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  13.  
  14. <h2 class="pagetitle"><?php the_title(); ?></h2>
  15.  
  16. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  17.  
  18. <div class="entry">
  19.  
  20. <?php the_content( __( '<p class="serif">Read the rest of this page &rarr;</p>', 'buddypress' ) ); ?>
  21.  
  22. <?php wp_link_pages( array( 'before' => '<div class="page-link"><p>' . __( 'Pages: ', 'buddypress' ), 'after' => '</p></div>', 'next_or_number' => 'number' ) ); ?>
  23. <?php edit_post_link( __( 'Edit this page.', 'buddypress' ), '<p class="edit-link">', '</p>'); ?>
  24.  
  25. </div>
  26.  
  27. </div>
  28.  
  29. <?php comments_template(); ?>
  30.  
  31. <?php endwhile; endif; ?>
  32.  
  33. </div><!-- .page -->
  34.  
  35. <?php do_action( 'bp_after_blog_page' ); ?>
  36.  
  37. </div><!-- .padder -->
  38. </div><!-- #content -->
  39.  
  40. <?php get_sidebar(); ?>
  41.  
  42. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement