Advertisement
Guest User

wpthmcdhlp

a guest
Oct 12th, 2012
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <?php query_posts("showposts=1&category_name=Destaque"); ?>
  2. <?php while (have_posts()) : the_post(); ?>
  3.  
  4. <div id="destaque">
  5. <img src="<?php bloginfo('template_directory'); ?>/imagem/blocktop800.gif">
  6. <div class="title">Destaque</div>
  7.  
  8. <div id="dback">
  9.  
  10. <div id="dimg">
  11.  
  12. <?php $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), array( 5600,1000 ), false, '' ); ?>
  13.  
  14. <img src="<?php echo $src[0]; ?>">
  15.  
  16. </div>
  17.  
  18. <div id="dcontent">
  19.  
  20. <a class="dtitle" href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a><br>
  21. <span id="dtext">
  22.  
  23.  
  24. <?php
  25. // Get $post if you're inside a function
  26. global $post;
  27.  
  28. if ( empty($post->post_excerpt) ) {
  29. echo substr(strip_tags(get_the_content()),0,200);
  30. } else {
  31. the_excerpt();
  32. }
  33. ?> <a href="<?php echo get_permalink(); ?>">Ler Mais »</a> </span>
  34.  
  35. </div>
  36.  
  37. <img src="<?php bloginfo('template_directory'); ?>/imagem/destaquebottom.gif">
  38.  
  39. </div>
  40.  
  41. </div>
  42.  
  43. <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement