Advertisement
Guest User

page

a guest
Feb 24th, 2012
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.69 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3.     <div id="content">
  4.     <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  5.            
  6.         <div class="post" id="post-<?php the_ID(); ?>">
  7.             <div id="page-title" style="border-bottom:#C29D07 5px solid; margin: 0 auto;">
  8.        
  9.    
  10.             <h2><?php the_title(); ?></h2>
  11.             </div>
  12.             <?php include (TEMPLATEPATH . '/inc/meta.php' ); ?>
  13.  
  14.             <div class="entry">
  15.  
  16.                 <?php the_content(); ?>
  17.  
  18.                 <?php wp_link_pages(array('before' => 'Pages: ', 'next_or_number' => 'number')); ?>
  19.  
  20.             </div>
  21.  
  22.             <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
  23.  
  24.         </div>
  25.        
  26.         <?php // comments_template(); ?>
  27.  
  28.         <?php endwhile; endif; ?>
  29.  
  30.  
  31. </div>
  32. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement