Agregué esos código al fucntion.php pero al llamarlo en mi index....no he podido mostrar la imagen que acompaña al texto resumen......¿algo más falta?
Código PHP:
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail();
}
?>
<?php $my_query = new WP_Query('cat=35&showposts=1'); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); $do_not_duplicate = $post->ID; ?>
<div class="Bt1">
<a href="<?php the_permalink(); ?>" ><?php the_title(); ?></a>
</div>
<?php the_content_limit('120'); ?>
<?php endwhile;?>