kaosoul
Forum Replies Created
Viewing 1 replies (of 1 total)
-
Forum: Fixing WordPress
In reply to: Bittersweet Theme Not Indexing Previous PostsI believe there is a problem with the index.php itself, but I hardly know anything about coding, so I’m including my whole index.php file for someone smarter then me to look over.
?<?php get_header(); ?> <div class="main"> <div class="item"> <div class="date"> <div><?php the_time('M');?></div> <span><?php the_time('d');?></span> </div> <div class="content"> <!-------first layer----------> <?php // Here is the call to only make two posts show up on the homepage REGARDLESS of your options in the control panel query_posts('showposts=1'); ?> <?php if (have_posts()) : ?> <?php $first = true; ?> <?php while (have_posts()) : the_post(); ?> <div class="story<?php if($first == true) echo " first" ?>"> <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a> </h1> <div class="details"> <small> Posted on <?php the_time('M d Y');?> <br/> Filed under <?php the_category(', ') ?> <br/></small></div> <div class="body"> <p><?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?><br><?php related_posts(); ?><br><br> </div> </p> </div> <?php if($first==true) { $first= false;} else {echo '<div class="clear"></div>';$first= true; } ?> <?php endwhile; ?> <?php else : ?> <h2 class="center">Not Found</h2> <p class="center">Sorry, but you are looking for something that isn't here.</p> <?php include (TEMPLATEPATH . "/searchform.php"); ?> <?php endif; ?> <div class="clear"></div> <!-------end first layer----------> <!-------second layer----------> <?php $posts = get_posts('numberposts=5&offset=1'); foreach($posts as $post) : setup_postdata($post); ?> <h1> <a href="<?php the_permalink() ?>" title="Continue reading <?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a> </h1> <div class="details"> <small> Posted on <?php the_time('M d Y');?> <br/> Filed under <?php the_category(', ') ?> <br/></small></div> <div class="body"> <p><?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?><br><?php related_posts(); ?><br><br> </div> </p> <?php endforeach; ?> <div class="navigation"> <div class="right"><?php previous_posts_link('« NEXT ENTRIES') ?></div> <div class="left"><?php next_posts_link('PREVIOUS ENTRIES »') ?></div> </div><br><br> <br><br> <!-------end second layer----------> </div> </div> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
Viewing 1 replies (of 1 total)