Advertisement
sgaffney

bbpress.php

Dec 2nd, 2011
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.63 KB | None | 0 0
  1. <?php
  2. /**
  3.  * The template for displaying all pages.
  4.  *
  5.  * This is the template that displays all pages by default.
  6.  * Please note that this is the WordPress construct of pages
  7.  * and that other 'pages' on your WordPress site will use a
  8.  * different template.
  9.  *
  10.  * @package WordPress
  11.  * @subpackage Twenty_Eleven
  12.  * @since Twenty Eleven 1.0
  13.  */
  14.  
  15. get_header( 'tumbleboard' );
  16.  
  17. ?>
  18.  
  19. <?php do_action('wptumble_before_main_content'); // <div id="container"><div id="content" role="tumbleboard"> ?>
  20.  
  21.     <?php the_content(); ?>
  22.  
  23. <?php do_action('wptumble_after_main_content'); // </div></div> ?>
  24.  
  25. <?php get_footer( 'tumbleboard' ); ?>
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement