Advertisement
alchymyth

first post different

Sep 13th, 2012
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.65 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="content" class="narrowcolumn">
  4.  
  5. <?php if (have_posts()) : ?>
  6. <br>
  7. <?php while (have_posts()) : the_post(); ?>
  8.  
  9. <?php
  10. if($wp_query->current_post == 0 ) { ?>
  11.  
  12. <div class="post" id="post-<?php the_ID(); ?>">
  13. <!--<div class="alignleft"><font color="#999999"><b><?php the_category(', ') ?></b> | </font></div><br>-->
  14. <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h1>
  15. <font color="#999999"><b><?php the_category(', ') ?></b> | <small><?php the_time('l j F Y') ?> by <?php the_author_posts_link(); ?></b></small></font>
  16.  
  17. <div class="entry">
  18. <?php the_content('Read more&raquo;'); ?>
  19. </div>
  20.  
  21. <p class="postmetadata"><!--by <?php the_author_posts_link(); ?> |
  22. Read more about: <img class="alignnone size-full wp-image-696" title="spacer" src="http://www.cycleseen.com/images/spacer.jpg" alt="spacer" width="4" height="1" /> <?php the_tags('','<img class="alignnone size-full wp-image-696" title="spacer" src="http://www.cycleseen.com/images/spacer.jpg" alt="spacer" width="8" height="1" /> '); ?><img class="alignnone size-full wp-image-696" title="spacer" src="http://www.cycleseen.com/images/spacer.jpg" alt="spacer" width="8" height="1" /><a href="/onthesubjectof">All subjects</a> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('0 Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?>--> <font color="#666666">...................................................................................................................................................</font></div>
  23.  
  24. <?php } else { ?>
  25.  
  26. <div class="post" id="post-<?php the_ID(); ?>">
  27. <!--<div class="alignleft"><font color="#999999"><b><?php the_category(', ') ?></b> | </font></div><br>-->
  28. <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h1>
  29. <font color="#999999"><b><?php the_category(', ') ?></b> | <small><?php the_time('l j F Y') ?> by <?php the_author_posts_link(); ?></b></small></font>
  30.  
  31. <div class="entry">
  32. <?php the_excerpt(); ?> <a href="<?php echo get_permalink(); ?>"> Read more&raquo;</a>
  33. </div>
  34.  
  35. <p class="postmetadata"><!--by <?php the_author_posts_link(); ?> |
  36. Read more about: <img class="alignnone size-full wp-image-696" title="spacer" src="http://www.cycleseen.com/images/spacer.jpg" alt="spacer" width="4" height="1" /> <?php the_tags('','<img class="alignnone size-full wp-image-696" title="spacer" src="http://www.cycleseen.com/images/spacer.jpg" alt="spacer" width="8" height="1" /> '); ?><img class="alignnone size-full wp-image-696" title="spacer" src="http://www.cycleseen.com/images/spacer.jpg" alt="spacer" width="8" height="1" /><a href="/onthesubjectof">All subjects</a> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('0 Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?>--> <font color="#666666">...................................................................................................................................................</font></div>
  37.  
  38. <?php } ?>
  39. <?php endwhile; ?>
  40. <div class="navigation">
  41. <div class="alignleft"><?php previous_posts_link('&laquo; previous') ?></div>
  42. <div class="alignright"><?php next_posts_link('next &raquo;') ?></div>
  43. </div>
  44.  
  45. <?php else : ?>
  46.  
  47. <h2 class="center">Not Found</h2>
  48. <p class="center">Sorry, but you are looking for something that isn't here.</p>
  49. <?php include (TEMPLATEPATH . "/searchform.php"); ?>
  50.  
  51. <?php endif; ?>
  52.  
  53. </div>
  54.  
  55. <?php get_sidebar(); ?>
  56.  
  57. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement