Advertisement
paulomendesjs

Código Index

Sep 18th, 2014
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. <?php
  2.  
  3. query_posts('category_name=portfolio&posts_per_page=5');
  4.  
  5. if ( have_posts() ) :
  6. while (have_posts()) : the_post();?>
  7. <a href="<?php the_Permalink();?>" title="<?php the_title();?> - Paulo Mendes | Fotografia" class="a_posts">
  8. <div class="posts">
  9. <div class="posts_foto">
  10. <div class="titulo_img">
  11. <div class="titulo2">
  12. <?php the_title();?>
  13. </div>
  14. </div><!-- FECHA_CLASS_TÍTULO -->
  15.  
  16. <?php if(has_post_thumbnail( )): ?>
  17. <?php the_post_thumbnail('featured'); ?>
  18. <?php else: ?>
  19. <img alt="<?php the_title(); ?>" src="<?php bloginfo('template_directory'); ?>/img/sem-thumbnail.jpg" />
  20. <?php endif; ?>
  21.  
  22. </div><!-- FECHA_CLASS_POSTS_FOTO -->
  23.  
  24. <span class="titulo_posts"><?php the_title();?></span>
  25.  
  26. <?php the_excerpt(); ?>
  27.  
  28. </div><!-- FECHA_ID_POSTS -->
  29. </a>
  30. <?php endwhile; ?>
  31.  
  32. <div class="paginator">
  33.  
  34. <?php wp_pagenavi(); ?>
  35.  
  36. </div><!--DIV_CLASS_PAGINATOR -->
  37.  
  38. <?php else:?>
  39. <?php endif;?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement