I am editing a costum theme. I was trying to add excerpt to the homepage. The homepage is costum.
The excerpt show just fine but the image refuses to be displayed it seems.
This is my code:
$args = array( 'numberposts' => 5, 'category' => 3,4,5,6,7 );
$posts = query_posts( $args . '&orderby=date&order=desc' );
foreach( $posts as $post ) : setup_postdata($post); ?>
<li>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<div class="postcont">
<?php
echo get_post_meta($post->ID, "Thumbnail", true);
the_excerpt(); ?>
</div>
</li>
<?php endforeach; ?>
This is of course added to functions.php
if ( function_exists( 'add_theme_support' ) ) {
add_theme_support( 'post-thumbnails' );
}
Any toughts?