~osdf-devteam/osdf/wp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php get_header(); ?>
 
  <div id="container">
   <div id="content">
   
<?php the_post(); ?>
   
    <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
     <!-- Don't show page title <h1 class="entry-title"><?php //the_title(); ?></h1> -->
     <div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages('before=<div class="page-link">' . __( 'Pages:', 'osdf' ) . '&after=</div>') ?>    
<?php edit_post_link( __( 'Edit', 'osdf' ), '<span class="edit-link">', '</span>' ) ?>
     </div><!-- .entry-content -->
    </div><!-- #post-<?php the_ID(); ?> -->  
   
<?php if ( get_post_custom_values('comments') ) comments_template() // Add a custom field with Name and Value of "comments" to enable comments on this page ?>  
   
   </div><!-- #content -->  
  </div><!-- #container -->
 
<?php get_sidebar(); ?>
<?php get_footer(); ?>