• zigx

    (@zigx)


    Hey guys,

    I have a really weird situation… when i create blog entries on http://www.fatzz.com and publish them immediately they work Fine.

    When I modify an entry’s post date, however, the post’s date does not show up on my main page line up. I can see from the source of the page that there are em></em tags that are totally empty!

    I am totally confused by this and im pretty sure it has to do with the publish date… searching the archives here did not result in anything either so any help would be greatly appreciated.

    Thank you guys!

Viewing 7 replies - 1 through 7 (of 7 total)
  • Kafkaesqui

    (@kafkaesqui)

    Can you point out a post on your blog where this is occuring? Right now on your home page all I see is, where two or more posts occur on a single day, the date only displays once. And that’s the way the_date() is supposed to work.

    If you need to display the date on each post, use the_time() with a date format string.

    barely_sane

    (@barely_sane)

    I am just starting out with my blog and have spent quite a bit of time trying to figure out how to customize the “about” tab at the top of my site and also how to add another tab like Fatzz did on his blog. I’m thinking that it’s right in front of my face but I’m just not seeing it on my dashboard menu.

    Thanks!

    http://www.barelysaneparent.com

    Thread Starter zigx

    (@zigx)

    Kafkaesqui thank you!! i had no idea it was supposed to work that way BUT Thinkin about it, that makes a lot of sense….

    Thread Starter zigx

    (@zigx)

    Barely_Sane, my template loops through the pages and just creates a new tab for each, here is an example of the code:

    <div id="header">

    <h1><?php bloginfo('name');?></h1>
    <p class="site_description"><?php bloginfo('description'); ?></p>

    <ul id="nav">
    <li <?php if (((is_home()) && !(is_paged())) or (is_archive()) or (is_single()) or (is_paged()) or (is_search())) { echo "class=\"current_page_item\""; } ?> ><a href="<?php echo get_settings('home'); ?>" ><?php _e('Home'); ?></a></li>
    <?php wp_list_pages('sort_column=menu_order&depth=1&title_li='); ?>
    </ul>

    </div>

    I think the important part is this:
    <?php wp_list_pages('sort_column=menu_order&depth=1&title_li='); ?>

    it lists my pages.

    spencerp

    (@spencerp)

    WTF Barely_Sane, please don’t hijack someone’s thread, start a new one.. Thanks! Just create your own, but use his blog’s url as a demo for what ya want I mean.. =)

    spencerp

    Kafkaesqui

    (@kafkaesqui)

    Barely_Sane, I’d suggest starting your own thread about your issue if you’re unable to work it out.

    Thread Starter zigx

    (@zigx)

    Yeah, if you cant figure it out from what i posted then start a new one… it will probably get more exposure from people who can help, than this one will.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Date does not show when i manually edit the Publish date.’ is closed to new replies.