Support » Fixing WordPress » Duplicate Titles, Correct Entries

  • Resolved bigrodey77

    (@bigrodey77)


    Hello,

    Right now I’m working on a website that would like a blog. I have installed WordPress and it is “working.” I have created my own site and I’m just using parts of The Loop to get the bits and pieces that I need.

    My problem is that when I open my blog, it shows me my four posts (they are test posts and that’s all I have added so far), yet it is showing incorrect title names.

    I have two pictures here, one of the list of posts from the admin section of WordPress and one of how they look on my site. I’m sure the images will do more justice that my description can.

    If I have left any information out or you need more information let me know and I’ll post it ASAP.

    Thanks in advance,

    Ryan

    http://img103.imageshack.us/img103/9910/wppostsec2.jpg
    http://img250.imageshack.us/img250/4130/actualpostswi7.jpg

    P.S. Sorry I had to post links to the images, I couldn’t see away to put images directly in the post…

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter bigrodey77

    (@bigrodey77)

    Hey!!

    I forget to add that if I use the index.php page that came with WordPress and *not* my code, everything works fine.

    I know everyone will say check my code and I already have. Here is the main part of my code where I am using the WordPress functionality.

    <div id="content">
    			<?php if (have_posts()) : while (have_posts()) : ?>
    
    			<span id="title"><?php the_title(); ?></span><br />
    			<span id="time"><?php the_time('F jS, Y'); ?></span><br /><br />
    			<?php the_post(); the_content(); ?><br />
    			<span id="category">Posted in <?php the_category(', ') ?></span><br /><br />
    		    <?php endwhile; endif; ?>
    		</div>
    Thread Starter bigrodey77

    (@bigrodey77)

    Something … Anything … Anyone?

    Put the call to the_post() at the beginning of the while loop. It sets up the data for the next post that functions like the_title() use.

    In your code the title is displayed before the post data is updated.

    Thread Starter bigrodey77

    (@bigrodey77)

    *RESOLVED*

    If I could buy you a beer I would.

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Duplicate Titles, Correct Entries’ is closed to new replies.