Advertisement
Guest User

Untitled

a guest
May 26th, 2012
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <?php
  2. /**
  3. Template Name: Super Gatas
  4. */
  5.  
  6. get_header();
  7.  
  8. ?>
  9.  
  10. <div id="conteudo">
  11.  
  12. <h5>Super Gatas</h5>
  13.  
  14. <?php
  15. query_posts('cat=4');
  16. while (have_posts()) : the_post();?>
  17. <div class='item_interno'>
  18. <a href='<?php the_permalink();?>'><h2><?php the_title(); ?></h2></a>
  19. <a href='<?php the_permalink();?>'><?php the_post_thumbnail(); ?></a>
  20. </div>
  21.  
  22. <?php endwhile;
  23. ?>
  24.  
  25. <br style='clear:both;' />
  26.  
  27. </div>
  28.  
  29. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement