Advertisement
Guest User

RS

a guest
Jul 8th, 2014
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.64 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4.  
  5.  
  6.  
  7. get_header(); ?>
  8.  
  9.  
  10.  
  11.        
  12.  
  13.         <div class="content">
  14.             <h1>Per Ankersjö</h1>
  15.            
  16.             <p>Text</p>
  17.  
  18.             <h2>Pers Blogg</h2>
  19.  
  20.             <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  21.  
  22.             <h1><a title="<?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1>
  23.  
  24.             <h4><?php echo get_the_date('Y-m-d');?></h4>
  25.  
  26.             <?php the_excerpt(); ?>
  27.  
  28.             <?php endwhile; // end of the loop. ?>
  29.  
  30.             <?php wp_pagenavi(); ?>
  31.  
  32.            
  33.  
  34.  
  35.  
  36.         </div>
  37.  
  38.     </div>
  39.  
  40.    
  41.  
  42.     <div class="rightside">
  43.  
  44.        
  45.  
  46.         <?php get_sidebar(); ?>
  47.  
  48.  
  49.  
  50.     </div>
  51.  
  52.    
  53.  
  54. </div>
  55.  
  56.  
  57.  
  58. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement