Advertisement
Guest User

Untitled

a guest
Nov 29th, 2011
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <div id="slider">
  2. <?php
  3. $tmp = $wp_query;
  4. $wp_query = new WP_Query('posts_per_page=4&category_name=destaque');
  5. if(have_posts()) :
  6. while(have_posts()) :
  7. the_post();
  8. ?>
  9. <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('vitrine'); ?></a>
  10. <?php
  11. endwhile;
  12. endif;
  13. $wp_query = $tmp;
  14. ?>
  15. </div>
  16.  
  17. In functions.php
  18.  
  19. if ( function_exists( 'add_theme_support' ) ) {
  20. add_theme_support( 'post-thumbnails' );
  21. add_image_size( 'homethumb', 260, 304, true );
  22. add_image_size( 'vitrine', 620, 280, true );
  23. }
  24.  
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement