Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2013
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="main">
  4.     <div id="post-area">
  5.         <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  6.         <div class="breadcrumb">
  7.             <?php if (function_exists('dimox_breadcrumbs')) dimox_breadcrumbs(); ?>
  8.         </div><!--breadcrumb-->
  9.         <h1><?php the_title(); ?></h1>
  10.         <div id="content-area">
  11.             <?php the_content(); ?>
  12.             <?php wp_link_pages(); ?>
  13.         </div><!--content-area-->
  14.         <?php endwhile; endif; ?>
  15.     </div><!--post-area-->
  16. </div><!--main -->
  17.  
  18. <?php get_sidebar(); ?>
  19. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement