el codigo que puse es mi funcion.
Código:
add_theme_support( 'post-thumbnails', array( 'post' ) ); // Add it for posts
the_post_thumbnail(array(100,100), array('class' => 'aligncenter'));
y este es el codigo que pongo en mi index.php
Código:
<?php if(has_post_thumbnail()) : ?>
<?php the_post_thumbnail('post-image', array('class' => 'imgthumb') ); /* post thumbnail settings configured in functions.php */ ?>
<?php the_excerpt(); ?>
<?php else : ?>
<?php the_content(); ?>
<?php endif; ?>