Hi.
Im struggling through setting up http://www.paulhoefgen.com with f8 lite and was merrily creating content, however, once i got to the 5th post, the first post fell off into oblivion.
From what I can makeout from the index.php file, it should loop until all the posts are generated, limited by the dashboard setting (in this case, it is set to the 10 most recent posts.) But for some reason, it stops at 4 posts. Ive seen the theme demoed with multiple lines of posts under the header, so I dont think Its that.
Is there another setting somewhere? My php skills are very weak im afraid, I can barely follow the basic logic, but have no concept of the syntax...
Here is the content of the index.php file:
<?php get_header(); ?>
<?php if (have_posts()) : ?>
<?php $i = 0; ?>
<?php while (have_posts()) : the_post(); $i++; ?>
<div class="span-8 post-<?php the_ID(); ?><?php if ($i == 3) { ?> last<?php } ?>">
<h6 class="archive-header"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title() ?></a></h6>
<?php
$values = get_post_custom_values("thumbnail");
if (isset($values[0])) {
?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><img src="<?php $values = get_post_custom_values("thumbnail"); echo $values[0]; ?>" alt="" /></a>
<?php } ?>
<?php the_excerpt(); ?>
<p class="postmetadata"><?php the_time('M d, Y') ?> | <?php comments_popup_link('Have your say »', '1 Comment »', '% Comments »'); ?></p>
</div>
<?php if ($i == 3) { ?><div class="archive-stack clear"></div><?php $i = 0; } ?>
<?php endwhile; ?>
<div class="clear"></div>
<div class="navigation">
<div><?php next_posts_link('« Older Entries') ?></div>
<div><?php previous_posts_link('Newer Entries »') ?></div>
</div>
<?php else : ?>
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
<?php include (TEMPLATEPATH . "/bottom.php"); ?>
<?php get_footer(); ?>