Guest User

Untitled

a guest
Jan 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. // Basic Example
  2. add_theme_support('post-thumbnails');
  3.  
  4. // Fixed Size with Class
  5. if ( function_exists('has_post_thumbnail') && has_post_thumbnail() ) {
  6. the_post_thumbnail(array(250,120), array("class" => "alignright post_thumbnail"));
  7. }
Add Comment
Please, Sign In to add comment