Ver Mensaje Individual
  #3 (permalink)  
Antiguo 26/06/2013, 08:37
oweer
 
Fecha de Ingreso: enero-2013
Mensajes: 38
Antigüedad: 11 años, 3 meses
Puntos: 0
Exclamación Respuesta: error en post thumbnail size

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; ?>