Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Date Not Showing Up in WordPress

  • This topic is empty.
Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #31675
    CoolAsCarlito
    Participant

    I’ve come across this issue before and I’m having a hard time remembering the fix for it. Its showing up with the today’s date which is correct for the headlines however its only showing the date for the headlines. All news up to this point share that same date. Kansas Outlaw Wrestling




    Columns


    //The Query
    query_posts('category_name=columns');

    //The Loop
    if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

    " title="Permanent link to ">












    //The Query
    query_posts('category_name=headlines');

    //The Loop
    if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

    " title="Permanent link to ">












    //The Query
    query_posts('category_name=rumors');

    //The Loop
    if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

    " title="Permanent link to ">









    #59676
    TheDoc
    Member

    I believe the fix is using:

    You can modify it to display however you wish.
    http://codex.wordpress.org/Function_Reference/the_time

    #59677
    CoolAsCarlito
    Participant

    But that’s not what I’m wanting because it displays it for each. What I want is it to be grouped by the date and then for each column.

    #59678
    TheDoc
    Member

    Maybe I’m not understanding your problem correctly. When I go to the page I see dates and headlines. What am I supposed to see?

    #59680
    CoolAsCarlito
    Participant

    Well if its supposed to show dates and then the news that is posted for that date. The original problem was that it wasn’t showing the date for the rumors at the time.

    #59681
    TheDoc
    Member

    Ohhhhh – so something like:

    February 17, 2011
    – Article
    – Article
    – Article

    February 12, 2011
    – Article
    – Article
    …etc

    Is that right?

    #59682
    CoolAsCarlito
    Participant

    Correct.

    #59642
    CoolAsCarlito
    Participant

    I don’t know what did it but I have it but I’m trying to figure out how I can have a line break after the date I tried putting in an actual line break tag but that screwed everything up.

Viewing 8 posts - 1 through 8 (of 8 total)
  • The forum ‘Back End’ is closed to new topics and replies.