Advertisement
Guest User

Untitled

a guest
Feb 15th, 2012
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. <?php get_header();?>
  2.  
  3. <div id="category">
  4.  
  5. <ul>
  6. <?php if (have_posts()): while (have_posts()) : the_post();?>
  7. <li>
  8. <a href="<?php the_Permalink()?>">
  9. <?php
  10. $key="img";
  11. $img = get_post_meta($post->ID,$key,true);
  12. if(isset($img) && $img >= '1'){ ?>
  13. <a href="<?php the_Permalink()?>" title="<?php the_title();?>" alt="<?php the_title();?>">
  14. <img src="<?php echo get_option('home');?>/<?php $key="img";echo get_post_meta($post->ID,$key,true);?>"
  15. title="<?php the_title();?>" alt="<?php the_title();?>" width="100px" height="80px"></a>
  16. <?php }else{}?>
  17.  
  18. <span class="titulo"><a href="<?php the_Permalink()?>"><?php the_title();?></a></span>
  19. <span class="meta">
  20. <span><?php if(function_exists('the_ratings')) { the_ratings(); } ?></span>
  21. <?php comments_popup_link('0 comentário','1 comentário','% Comentários'); ?> |
  22. <?php if(function_exists('the_views')){the_views();}?>
  23.  
  24. </span>
  25.  
  26. <p><?php the_excerpt(); ?></p>
  27.  
  28. </li>
  29. <?php endwhile; else:?>
  30. <?php endif;?>
  31. </ul>
  32. <div class="paginator"><?php wp_pagenavi(); ?></div><!--paginator-->
  33. <span class="google"><img src="<?php bloginfo('template_directory'); ?>/images/468x60.gif" /></span>
  34. </div><!--category-->
  35.  
  36. <div id="single_sidebar">
  37. <?php include (TEMPLATEPATH . '/cat_sidebar.php'); ?>
  38. </div><!--single_sidebar-->
  39.  
  40. <?php get_footer();?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement