Try it like this:
$dates = array(); // declare an array to hold dates
echo '<ul>';
if (have_posts()) : while (have_posts()) : the_post();
$thisday = get_the_time('m/d/Y'); // this post's date
if (!in_array($thisday,$dates)) { // check if it's in the array
echo '<h5>Date '.$thisday.'</h5>'; // if not, print header with date
$dates[] = $thisday; // and store it
}
echo '<li>';
the_category();
echo '</li>';
endwhile;
endif;
echo '</ul>';
Related Posts:
- When should you use WP_Query vs query_posts() vs get_posts()?
- Get post ids from WP_Query?
- Nested meta_query with multiple relation keys
- Some doubts about how the main query and the custom query works in this custom theme?
- How to query for most viewed posts and show top 5
- WP_Query vs get_posts
- Using OR conditions in meta_query for query_posts argument
- Order posts by ID in the given order
- Query Multiple Post types each with own meta query
- Get posts by menu ID
- Get the number of posts from the current page results
- WordPress Custom Query to show posts from last x years
- How to know which one is the main query?
- Perform query with meta_value date
- Meta Query with date and time on the same Day before given time
- get_the_title($postID) OR get_the_title()?
- How do I create my own nested meta_query using posts_where / posts_join?
- Best practice for multiple queries on page
- How to find out what “Blog pages show at most” is set to [duplicate]
- Multiple search queries on one page
- Retrieve or Query Pages by ID
- How do you query wordpress posts using a math formula between multiple meta field values?
- How add a custom posttype name using ACF field to a query post array
- How to implement time filter to show random post 1 month for one category and 3 months for other categories
- Page navigation doesn’t show when query category
- Multiple instances of Featured Image Query
- 2 loops on page – one with orderby rand second orderby date
- How do you Query posts with nothing in common?
- Custom category search box for WordPress
- Order a query result by a numeric meta key even if it does not exist, but put the posts with meta key first
- Query with a meta value inside a given range
- Store sticky post’s ids in a transient
- Five posts from a category in footer
- How to build a WP_Query using mulitple tags and using AND or OR operator between them
- Multiple loops without repeating content
- How to display multiple custom fields with the same meta_key in an ascending order?
- Bypass “supress_filters” in WP Query
- Some doubts about how the main query and the custom query works in this custom theme?
- How to display an other custom post type in a different custom post type’s archive?
- Display custom tags on pages that have a specific page parent
- How to exclude post formats from wordpress recent posts in a tabs widget [closed]
- How to increase load time of an archive/search page (WP_Query)
- Query Page Content From Theme Options?
- How to query for all posts that have a particular meta key?
- Exclude All Posts Which Do Not Have A Tag Assigned
- How can I override one post and make it display content for another post?
- Get all posts which was posted on X Days WordPress
- Easy way to write complex queries in wordpress
- Filter post query to only show direct children of category
- get_posts output always same post
- Query_posts works when appending via AJAX call wp_query doesn’t?
- How to make posts unqueryable/unpublish posts where ACF relationship field is an unpublished post? [closed]
- Conditional operator OR not working with custom fields
- complex get_posts() query to select child pages
- Get posts that do not have the same tags as current
- Should I reset $wp_query?
- Posts query according to meta box date
- How do I add a relation parameter to my filter query?
- How to use ‘WP_Query’ or ‘query_posts’ to display content in a descending order
- Get next/prev image/attachment in time with date query
- Max Posts and Memory Limit
- specific post is not excluded from the loop
- Why doesn’t my WP Meta Query return any results?
- Paginate pages with dynamic query
- Trouble Making WP_Query paged
- How to query for a page, get data, then query for child pages of that page
- Magazine style frontpage with multiple categories/loops and no duplicate posts
- Optimising WP_Query with ACF Fields
- Query post and sort by custom value calculated with custom field on cpt
- Filter products on category AND tag
- Query post ordered by meta value that show first post that contained a tag
- query hook parse_tax_query function takes no effect
- ElasticPress is (aparently) messing with my search filters
- pre_user_query vs pre_get_posts
- How do I stop the same post showing multiple times in a archive?
- Get posts that match defined arrays of tags
- Order by meta date with a thousanth of a second defaults to post order
- trying to change from query_post to WP_Query
- Problem with my loops
- WordPress For Loop Prints Unwanted Extra Paragraph Element
- My entry results are not consistently alphabetized
- How to order posts, that have already been filtered by custom taxonomy, by their category names?
- How to add in WP_Query to every 3 posts displayed? [duplicate]
- Calling body_class and wp_nav_menu for a different post
- query_posts() doesn’t seem to be called in my page
- Modify query to exclude certain ids and certain parents and its corresponding children
- Fetching $_POST from Page Template into functions.php
- How to order by datediff in WP loop?
- how to exclude store in clipper theme wordpress code php
- Ordering Posts by parent category, name ascending
- Display post list within category list sorted by name [duplicate]
- Optimising specific Query with ACF meta objects
- When should you use WP_Query vs query_posts() vs get_posts()?
- query_posts with sorting on a custom datestamp
- How to query post ids liked by the Author
- Query Posts by date range with fixed beginning and end
- get contents and permalink from a specified page
- Exclude categories and subcategories in QueryLoop
- query_posts problem – need help
- Incorrect posts displayed on category page