Si quieres que te salga solamente el titulo de la noticia y la imagen en el index, debes hacer varias cosas:
En el archivo functions.php debes colocar este código:
Código PHP:
Ver originalfunction catch_that_image() {
global $post, $posts;
$first_img = '';
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches); $first_img = $matches [1] [0];
// no image found display default image instead
$first_img = "/images/default.jpg";
}
return $first_img;
}
Con esto ya puesto en functions.php nos dirigiremos a nuestro index.php donde suplantaremos el código normal por este:
Código PHP:
Ver original<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div id="post">
<img src="<?php echo catch_that_image();?>" alt="<?php the_title();?>" />
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
</div>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
Saludos