Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. loop.php:
  2. <?php if ( function_exists("has_post_thumbnail") && has_post_thumbnail() ) { the_post_thumbnail(array(480,175), array("class" => "post_thumbnail")); } ?>
  3.  
  4. function.php:
  5. if ( function_exists( 'add_theme_support' ) ) {
  6. add_theme_support( 'post-thumbnails' );
  7. set_post_thumbnail_size( 480, 175, true );
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement