A página não está configurada para thumbnail.
Copie o código da página e cole aqui no forum e vamos resolver.
O código ai amigo! Espero resposta.
http://migre.me/a76Sn
paulodca você quer algo tipo isso?
Bem, nesse caso ali é uma categoria….
para fazer daquele jeito é preciso que você edite o category.php. Substitua o código dentro do corpo do site por:
<!-- em nosso loop vamos exibir apenas título e thumbnail -->
<div class="loop">
<?php while ( have_posts() ) : the_post(); ?>
<div <?php post_class(); ?>>
<div class="entry">
<a class="thumbnail" href="<?php the_permalink() ?>" rel="bookmark"><?php the_post_thumbnail(); ?></a>
</div>
<h4><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h4>
<?php the_excerpt(); ?>
</div>
<?php endwhile; ?>
</div><!-- .lopp -->
e depois adcione ao css o seguinte:
.loop{
float: left;
display: block;
background: #FFFFFF;
width: 700px;
margin: 20px 15px 0px 0px;
padding: 10px;
overflow: hidden;
}
.loop p {text-align:justify; color:#000000;}
.loop img {width:100%; height:auto;}
.loop .excerpt p {
text-align:justify;
margin: 8px 0px 10px 0px;
padding: 0px 0px 0px 0px;
}
.loop .post {display:table; float:left !important; width:300px; padding-right: 40px; padding-bottom:0px; height:500px; min-height:500px; max-height:500px;}
Espero que isso ajude!!