Advertisement
jmaureen

test

Jun 3rd, 2011
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: TESTT
  4. */
  5. ?>
  6.  
  7. <?php get_header(); ?>
  8.  
  9. <div id="content-container">
  10. <div id="content" role="main">
  11.  
  12. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  13.  
  14. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  15. <?php if ( is_front_page() ) { ?>
  16. <h2 class="entry-title"><?php the_title(); ?></h2>
  17. <?php } else { ?>
  18. <h1 class="entry-title"><?php the_title(); ?></h1>
  19. <?php } ?>
  20.  
  21. <div class="entry-content">
  22. <?php the_content(); ?>
  23. <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'coraline' ), 'after' => '</div>' ) ); ?>
  24. <?php edit_post_link( __( 'Edit', 'coraline' ), '<span class="edit-link">', '</span>' ); ?>
  25. </div><!-- .entry-content -->
  26. </div><!-- #post-## -->
  27.  
  28.  
  29. <?php endwhile; ?>
  30.  
  31. </div><!-- #content -->
  32. </div><!-- #content-container -->
  33.  
  34. <?php get_sidebar(); ?>
  35. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement