Advertisement
Guest User

Untitled

a guest
Sep 15th, 2011
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="content">
  4. <?php if (have_posts()) : ?>
  5.  
  6. <?php while (have_posts()) : the_post(); ?>
  7.  
  8. <div class="post">
  9. <div class=”tag-img”>
  10. <?php if (function_exists('get_cat_icon_lite')) echo get_cat_icon_lite();?>
  11. </div>
  12. <h1>
  13. <a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
  14. <small><img src="http://alnoorians.com/wp-content/themes/WorldSym/images/date.png"/> <?php the_time('F jS, Y') ?> | <img src="http://alnoorians.com/wp-content/themes/WorldSym/images/user.png"/> <?php the_author_posts_link(); ?> | <b><img src="http://www.hqmoviz.us/wp-content/uploads/2011/09/rsz_schedule-32.png"/></b> <?php the_category(', ') ?> |<img src="http://images.findicons.com/files/icons/1156/fugue/16/eye_arrow.png"/> <?php if(function_exists('the_views')) { the_views(); } ?> | <img src="http://icons.iconarchive.com/icons/pixelmixer/basic/16/bubble-icon.png"/> <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?><?php if ( $user_ID ) :?> | <b>Modify:</b> <?php edit_post_link(); ?> <?php endif; ?></small>
  15.  
  16. <hr/>
  17. </div>
  18.  
  19. <?php comments_template(); ?>
  20.  
  21. <?php endwhile; ?>
  22.  
  23. <div class="navigation">
  24. <?php wp_pagenavi(); ?>
  25. </div>
  26.  
  27. <?php else : ?>
  28.  
  29. <h2 class="center">Not Found</h2>
  30. <p class="center">Sorry, but you are looking for something that isn't here.</p>
  31.  
  32. <?php endif; ?>
  33.  
  34. </div>
  35.  
  36. <?php get_sidebar(); ?>
  37.  
  38. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement