Advertisement
alchymyth

Untitled

Apr 3rd, 2011
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.19 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <?php get_sidebar(); ?>
  4.  
  5. <div id="main">
  6.  
  7.     <div class="topstory">
  8.  
  9. <?php global $query_string; $wp_query = new WP_Query($query_string .'&showposts=1');
  10.  
  11. if ($wp_query->have_posts()) :
  12.  
  13.   while ($wp_query->have_posts()) : $wp_query->the_post();
  14.  
  15.   $do_not_duplicate = $post->ID;
  16.  
  17. ?>
  18.  
  19.     <?php if(get_post_meta($post->ID, "newsworthy_image_value", $single = true) != "") { ?><img src="<?php echo get_post_meta($post->ID, "newsworthy_image_value", $single = true); ?>" alt="<?php the_title_attribute(); ?>" /><?php } ?>
  20.  
  21.     <h1><?php the_title(); ?></h1>
  22.  
  23.     <?php the_content(); ?>
  24.  
  25.         <div class="postmeta"><a href="<?php the_permalink(); ?>" class="readmore">Read more...</a><a href="<?php comments_link(); ?>" class="comments">Comments (<?php comments_number('0', '1', '%');  ?>)</a><span class="category">Filed under: <?php the_category(', ') ?></span></div>
  26.  
  27. <?php endwhile; endif; ?>
  28.  
  29.     </div>
  30.  
  31. <div id="left">
  32.  
  33.     <?php
  34.   //endwhile;
  35. //endif;
  36. ?>
  37.  
  38.  
  39.  
  40.  
  41.  
  42.     <div class="clear">&nbsp;</div>
  43.  
  44.  
  45.  
  46.                                 </div>
  47. <?php if(function_exists('wp_paginate')) {
  48.     wp_paginate();
  49. } ?>
  50.  
  51. <div class="clearboth">&nbsp;</div>
  52.  
  53. </div>
  54.  
  55.  
  56.  
  57. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement