Cita:
Iniciado por zanguanga En efecto, es cosa del tema.
Busca en tus archivos index.php (o home.php si lo hubiera) single.php y functions.php alguna referencia al tamaño de las miniaturas (thumbnail) y copia y pega ese trozo de código.
Este artículo del Codex (la biblia de WordPress) te iniciará en el tema de las miniaturas: [url]http://codex.wordpress.org/Function_Reference/the_post_thumbnail[/url]
Gracias por la ayuda, este es el codigo que encontré.
Primero te pongo el que encontre en el archivo functions (el archivo index no tenia nada de eso).
- Functions:
/* Enable support for post-thumbnails ********************************************/
// If we want to ensure that we only call this function if
// the user is working with WP 2.9 or higher,
// let's instead make sure that the function exists first
add_theme_support( 'post-thumbnails', array( 'post' ) ); // Add it for posts
set_post_thumbnail_size( 200, 200, true ); // Normal post thumbnails, hard crop mode
add_image_size( 'post-image', 580, 181, true ); // Post thumbnails, hard crop mode
add_image_size( 'mini-image', 40, 40, true ); // Post thumbnails for mini image, hard crop mode
add_image_size( 'carousel-image', 200, 105, true ); // Post thumbnails for carousel, hard crop mode
add_image_size( 'slider-image-580x300', 580, 300, true ); // Post thumbnails for slider, hard crop mode
- single:
<div id="page">
<div id="page-inner" class="clearfix">
<div id="content">
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div id="post-title" class="clearfix full">
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
</div> <!-- end div .post-title -->
<?php /* option to activate featured image at the beginning of the post */
if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail()) && get_option('eted_post_img') == 'true' ) : ?>
<?php the_post_thumbnail('post-image', array('class' => 'imgthumb')); /* post thumbnail settings configured in functions.php */?>
<?php endif; ?>
Eso es todo lo que vi de thumbails un saludo y espero vuestra ayuda.