Guest User

Untitled

a guest
Feb 20th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <?php include('sidebar.php');?>
  4.  
  5. <div id="container">
  6.  
  7. <?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
  8.  
  9. <div class="post" id="post-<?php the_ID(); ?>">
  10.  
  11. <h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
  12.  
  13. <div class="entry">
  14. <div class="byline">
  15. <?php _e('Posted By '); ?> <?php the_author_posts_link(); ?> on <?php the_time(__('F j, Y')); ?>
  16.  
  17. </div>
  18.  
  19.  
  20.  
  21. <?php the_content(); ?>
  22.  
  23.  
  24. <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
  25.  
  26. <div class="postmetadata">
  27. <?php _e('Category&#58;'); ?> <?php the_category(', ') ?> <?php _e('by'); ?> <?php the_author(); ?> <?php edit_post_link('Edit', ' &#124; ', ''); ?> <br />
  28. <span class="tags"><?php _e('Tags: '); ?> <?php the_tags('', ', ', ''); ?></span>
  29. </div>
  30.  
  31. <br />
  32.  
  33.  
  34. </div>
  35.  
  36. <div class="comments-template">
  37. <h2>Comments</h2>
  38. <?php comments_template(); ?>
  39. </div>
  40.  
  41. </div>
  42.  
  43. <?php endwhile; ?>
  44.  
  45. <div class="navigation">
  46. <?php previous_post_link('&laquo; %link') ?> &nbsp; &nbsp; <?php next_post_link(' %link &raquo;') ?>
  47. </div>
  48.  
  49. <?php else : ?>
  50.  
  51. <div class="post">
  52. <h2><?php _e('Not Found'); ?></h2>
  53. </div>
  54.  
  55. <?php endif; ?>
  56.  
  57. </div>
  58.  
  59.  
  60. <?php include('bio.php');?>
  61. <?php include('misc.php');?>
  62. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment