Display post thumbnails
-
I have a page with multiple div’s
each div shows specific categories and each div only shows specific a attributes for each post.For example one div might show 3 post form the news category. it will also only sho the title and the excerpt.
i have one that needs to display the title excerpt and a thumbnail. i cant get the thumbnail to display. i have provided the code for that div.
any help would be greatly appreciated and any additional information need with be provided asap.
thanks
<div id="press"><br /><h9>PRESS RELEASES</h9><br /> ........................................................................................................................................................................................................................................... <ul> <?php global $post; $myposts = get_posts('numberposts=3&category=1'); foreach($myposts as $post) : ?> <li><p><strong><?php the_title(); ?>::</strong><br /> <?php the_excerpt_rss(20,1); ?> </p></li> <?php endforeach; ?> </ul> </div>
- The topic ‘Display post thumbnails’ is closed to new replies.