- This topic is empty.
Viewing 8 posts - 1 through 8 (of 8 total)
Viewing 8 posts - 1 through 8 (of 8 total)
- The forum ‘Back End’ is closed to new topics and replies.
The forums ran from 2008-2020 and are now closed and viewable here as an archive.
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

//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 ">
I believe the fix is using:
You can modify it to display however you wish.
http://codex.wordpress.org/Function_Reference/the_time
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.
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?
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.
Ohhhhh – so something like:
February 17, 2011
– Article
– Article
– Article
February 12, 2011
– Article
– Article
…etc
Is that right?
Correct.
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.