/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
//post thumbnails - add to fucntions add_theme_support( 'post-thumbnails' ); //add to loop <?php if ( has_post_thumbnail() ) { <?php the_post_thumbnail(); ?> } else { // the current post lacks a thumbnail } ?>