Guest User

Untitled

a guest
Nov 4th, 2014
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.03 KB | None | 0 0
  1. <?php
  2.  
  3. /*Template Name: Forum*/
  4.  
  5. /**
  6.  * The template for displaying all pages.
  7.  *
  8.  * This is the template that displays all pages by default.
  9.  * Please note that this is the wordpress construct of pages
  10.  * and that other 'pages' on your wordpress site will use a
  11.  * different template.
  12.  *
  13.  */
  14. ?>
  15. <?php get_header(); ?>
  16. <div class="clear"></div>
  17. <div class="page-content">
  18.     <h1 class="page_title"><?php the_title(); ?></h1>
  19.     <div class="grid_16 alpha">
  20.         <div class="content-bar">  
  21.             <?php if (have_posts()) : the_post(); ?>
  22.                 <?php the_content(); ?>
  23.                 <?php wp_link_pages(array('before' => '<div class="clear"></div><div class="page-link"><span>' . __('Pages:', 'andrina-lite') . '</span>', 'after' => '</div>')); ?>
  24.             <?php endif; ?>
  25.             <div class="clear"></div>
  26.             <!--Start Comment box-->
  27.             <?php comments_template(); ?>
  28.             <!--End Comment box-->
  29.         </div>
  30.     </div>
  31.  
  32.  
  33. </div>
  34. </div>
  35. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment