Advertisement
Guest User

buddypress.php

a guest
Sep 14th, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * Full width page template with no sidebar.
  5. *
  6. * @package Oxygen
  7. * @subpackage Template
  8. */
  9.  
  10. get_header(); // Loads the header.php template. ?>
  11.  
  12.  
  13.  
  14. <?php do_atomic( 'before_content' ); // oxygen_before_content ?>
  15.  
  16. <div class="content-wrap bp-full-width">
  17.  
  18. <div id="content">
  19.  
  20. <?php do_atomic( 'open_content' ); // oxygen_open_content ?>
  21.  
  22. <div class="hfeed">
  23.  
  24. <?php if ( have_posts() ) : ?>
  25.  
  26. <?php while ( have_posts() ) : the_post(); ?>
  27.  
  28. <?php do_atomic( 'before_entry' ); // oxygen_before_entry ?>
  29.  
  30. <div id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
  31.  
  32. <?php do_atomic( 'open_entry' ); // oxygen_open_entry ?>
  33.  
  34. <?php echo apply_atomic_shortcode( 'entry_title', '[entry-title permalink="0"]' ); ?>
  35.  
  36. <div class="entry-content">
  37.  
  38. <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'oxygen' ) ); ?>
  39.  
  40. <?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'oxygen' ), 'after' => '</p>' ) ); ?>
  41.  
  42. </div><!-- .entry-content -->
  43.  
  44. <?php echo apply_atomic_shortcode( 'entry_meta', '<div class="entry-meta">[entry-edit-link]</div>' ); ?>
  45.  
  46. <?php do_atomic( 'close_entry' ); // oxygen_close_entry ?>
  47.  
  48. </div><!-- .hentry -->
  49.  
  50. <?php do_atomic( 'after_entry' ); // oxygen_after_entry ?>
  51.  
  52. <?php do_atomic( 'after_singular' ); // oxygen_after_singular ?>
  53.  
  54. <?php endwhile; ?>
  55.  
  56. <?php endif; ?>
  57.  
  58. </div><!-- .hfeed -->
  59.  
  60. <?php do_atomic( 'close_content' ); // oxygen_close_content ?>
  61.  
  62. </div><!-- #content -->
  63.  
  64. <?php do_atomic( 'after_content' ); // oxygen_after_content ?>
  65.  
  66. <?php get_footer(); // Loads the footer.php template. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement