show only X number of posts
-
Hello there ??
I have and index page that shows only the excerpt from the posts. It has this code:<?php foreach ($posts as $post) { start_wp(); ?>
<td>
<h4 id="post-<?php the_ID(); ?>"><?php the_time("d/m/y"); ?> - <?php the_title(); ?></h4>
<?php
if ($single) {
the_content();
}
else {
the_excerpt();
}
?>
Now, I need that only 2 posts are showed…how can I do this?
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘show only X number of posts’ is closed to new replies.