admin管理员组

文章数量:1122832

I cannot get the main blog page with the current blog to show the current blog title. It shows on all other pages, just not the current/most recent blog. Any help will be greatly appreciated. Thank you.

<div id="page">

    <div id="contentleft">

        <?php if ( $paged < 2 ) { // Do stuff specific to first page?>

        <?php $my_query = new WP_Query('category_name=featured&showposts=1');
        while ($my_query->have_posts()) : $my_query->the_post();
         $do_not_duplicate = $post->ID;?>

        <div class="featurepost" id="post-<?php the_ID(); ?>">

            <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?>"><?php the_title(); ?>"><?php the_title(); ?></a></h2>

            <p class="postinfo">By <?php the_author_posts_link(); ?> on <?php the_time('M j, Y') ?> in <?php the_category(', ') ?> | <?php comments_popup_link('0 Comments', '1 Comment', '% Comments'); ?><?php edit_post_link('Edit', ' | ', ''); ?></p>

            <div class="entry">
                    <?php the_content('Read the rest'); ?>
                </div>

        </div>

    <?php endwhile; ?>

I cannot get the main blog page with the current blog to show the current blog title. It shows on all other pages, just not the current/most recent blog. Any help will be greatly appreciated. Thank you.

<div id="page">

    <div id="contentleft">

        <?php if ( $paged < 2 ) { // Do stuff specific to first page?>

        <?php $my_query = new WP_Query('category_name=featured&showposts=1');
        while ($my_query->have_posts()) : $my_query->the_post();
         $do_not_duplicate = $post->ID;?>

        <div class="featurepost" id="post-<?php the_ID(); ?>">

            <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?>"><?php the_title(); ?>"><?php the_title(); ?></a></h2>

            <p class="postinfo">By <?php the_author_posts_link(); ?> on <?php the_time('M j, Y') ?> in <?php the_category(', ') ?> | <?php comments_popup_link('0 Comments', '1 Comment', '% Comments'); ?><?php edit_post_link('Edit', ' | ', ''); ?></p>

            <div class="entry">
                    <?php the_content('Read the rest'); ?>
                </div>

        </div>

    <?php endwhile; ?>
Share Improve this question asked May 8, 2013 at 21:48 Natalie OlsonNatalie Olson 112 bronze badges 7
  • 2 What title are you referring to? i assume you do not mean a post title... – vancoder Commented May 8, 2013 at 21:51
  • yes, the post title...www.stevekrautcoaching.com/blog – Natalie Olson Commented May 8, 2013 at 21:51
  • What file is the code above from? – vancoder Commented May 8, 2013 at 22:36
  • Above is from the index.php file – Natalie Olson Commented May 8, 2013 at 23:24
  • www.stevekrautcoaching.com/blog is't loading any div with the id 'featurepost'. And if there is a problem with the dynamic codes, the HTML won't be affected as the code mentioned above. I found no <h2> using Firebug into your blog URL. The hierarchy I found is: – Mayeenul Islam Commented May 9, 2013 at 4:46
 |  Show 2 more comments

1 Answer 1

Reset to default 0

I believe that first page is your index.php, and I would guess that the code within that file is different from single.php, which is the file used by pages 2 onwards.

本文标签: Blog Title not showing up on main Blog page