Outputting the_excerpt
-
Hi,
I want to output the last 3 posts abd the_excerpt for each. The_excerpt does not output in my example.
<?php global $post; $myposts = get_posts('numberposts=5&offset=0'); foreach($myposts as $post) : ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> <?php the_excerpt(); ?></li> <?php endforeach; ?> </ul> </div>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Outputting the_excerpt’ is closed to new replies.