Advertisement
Guest User

Untitled

a guest
Mar 28th, 2011
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.96 KB | None | 0 0
  1.  
  2. <div class="featbox">
  3.     <h3 class="sidetitl">Últimas</h3>
  4.     <div class="featlist ">
  5.  
  6. <?php
  7.     $my_query = new WP_Query('category_name=Brasil&orderby=date&showposts=5');
  8.     while ($my_query->have_posts()) : $my_query->the_post();$do_not_duplicate = $post->ID;
  9. ?>
  10. <div class="fblock">
  11. <?
  12. $i_id = get_post_thumbnail_id();
  13. $i_url = wp_get_attachment_image_src($i_id,'clyp_slider');
  14. $i_url = $i_url[0];
  15. $d = $i_url;
  16.     ?>
  17. <a>"><?  if(!empty($d)){?>
  18. <img class="phumb" src="<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php get_image_url(); ?>&h=60&w=80&zc=1" alt=""/><? } else { ?>
  19. <img class="phumb" src="<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=http://localhost/amanchete/wp-content/themes/Calypso/images/acompanhe.jpg&h=60&w=80&zc=1" alt=""/> <? }?></a>
  20. <h3><a>" title="<?php the_title(); ?>"><?php echo substr($post->post_title,0,20); ?></a></h3>
  21. <p>  <?php the_content_rss('', TRUE, '', 10); ?> </p>
  22.  
  23. </div>
  24. <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement