I have a site http://designingway.com/fun_deals in this what I want that post should appear by date, for example right now on front page, there are some deals from today, and one from last week, if they were seperated by a divider with the date somehow that would be awesome.

Kindly see the example what I am looking http://www.creativedesignperth.com/example.jpg

this is the code I am using:

Thanks Ranbir

link|improve this question
This isn't a place where people just give you code. Either hire someone, or try to code it yourself and come back with questions. – simchona Feb 13 at 5:40
this is the code I am using: <div id="homepagecontent"> <?php get_template_part( 'post-excerpt' ); // Post Excerpt (post-excerpt.php) ?> </div> – Ranbir Feb 13 at 14:46
feedback

closed as not a real question by Ken Redler, Book Of Zeus, Tim Post Feb 14 at 8:48

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

In your loop you could assign the date to a variable. Then check if the next post date is equal to the previous post. If not, echo the date.

Something like this...

<?php $date = ""; // set the variable ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <?php 
    if ( $date != $get_the_date()){
    the_date('', '<h2 class="the_date"><span>', '</span></h2>'); 
    }
    $date = $get_the_date()
    ?>
  <div class="post">

    <h2><?php the_title(); ?></h2>
    <div class="entry"><?php the_content('read more'); ?></div>
  </div>

<?php endwhile; ?>
<?php endif; ?>
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.