first theme help. incorrect post titles
-
Hi. I am new to wordpress, php, and coding in general. I am working on my first theme.
I’m having a problem with my post titles. The first post title displays correctly. The second, however seems to be just a repeat of the first. The second title is displayed where the third title should be.
I think it may have something to do with the post counter I put in to set the css div id’s for the posts…i’m not sure if php can have an “if” within an “if”. Can someone help?
My index.php looks like this:
<?php get_header(); ?> <div id="main"> <div id="post"> <?php $counter1=0; if (have_posts()) : while (have_posts()) : $counter1++; ?> <?php if ($counter1==1) echo"<div id='post1'><!--post1 css divider-->\n"; if ($counter1==2) echo"<div id='post2'><!--post2 css divider-->\n"; if ($counter1==3) echo"<div id='post3'><!--post3 css divider-->\n"; ?> <h2 id="post-<?php the_ID(); ?>"> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"> <?php the_title(); ?></a></h2> <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small> <?php the_post(); the_content(); if ($counter1==1) echo"</div><!--end post1 divider-->\n"; if ($counter1==2) echo"</div><!--end post2 divider-->\n"; if ($counter1==3) echo"</div><!--end post3 divider-->\n"; endwhile; endif; ?> </div><!-- post --> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘first theme help. incorrect post titles’ is closed to new replies.