Add a variable to hold the previous post’s date, and then add a <br />
or something when it changes.
<?php
$prev_date=""; // initialize to empty string
query_posts($query_string.'&cat=-3');
while (have_posts()) : the_post(); ?>
<?php if( strlen( $prev_date ) > 0 && get_the_time( 'M j' ) != $prev_date ): ?>
<br /> <!-- or whatever you want to use to separate your date blocks -->
<?php endif; ?>
<span class="date"><?php the_time('M j') ?></span> -
<a class="title" href="https://wordpress.stackexchange.com/questions/94342/<?php the_permalink() ?>"><?php the_title(); ?></a>
<?php $prev_date = get_the_time( 'M j' );
?>
<!-- continue on with The Loop -->
<?php endwhile; ?>
Related Posts:
- How do I get posts by multiple post ID’s?
- What does setup_postdata ($post ) do?
- Query for custom post type? [closed]
- setup_postdata() does not seem to be working?
- Regenerate Slugs From Title of Posts
- Why get_posts are only showing five posts (retrieved by assigning a category to them?
- Exclude Current Post from Recent Posts Loop
- WordPress get_posts by category
- get_post random and order by not working
- Alternative to get_posts() due to multithreading cache crash
- How to get current post ID in quick edit callback
- How to restore deleted pages/posts?
- get posts based on meta value of the author
- date_query not returning some posts in date range
- How do you get posts by meta_query using the JSON API plugin?
- Why favour the standard WP loop over iterating over (new WP_Query())->get_posts()?
- Query posts ordering by title, but ignore ” and special characters
- get_posts not honoring post_status
- get_posts only children from certain parents
- get_posts cannot grab from specific category
- Filtering custom post type query
- How to limit get_posts()?
- get_posts from post x(offset=>x) to end
- With get_posts(), how can I put a category as a variable
- Serialized array, grab specific posts with meta_key/meta_value[0]->is_featured
- How do I combine these 2 queries
- get_posts gives different result than wpdb->get_results
- Increase the page size of the WordPress REST API
- Trouble using get_post
- Cache Get_posts
- get_posts() returns all posts rather than the ones specified with ‘post_author’ =>
- Query random post from different categories
- get_posts() excluding all children of a specific post/page
- var_dump and print_r cause white screen
- `get_posts()` ignore my custom post
- excluding current post from get_posts
- How to query posts to include specific pages of one post type, and all pages of another post type?
- Only retrieve posts where post_excerpt has been filled out
- Can I use numberposts=-1 and offset together when using get_posts()?
- Ordering posts in get_posts
- I don’t arrive to do order_by title when i have a conditionnal year in a request
- How can I display a single post link, based on title sample and change monthly?
- get_posts() doesn’t consider user permissions
- Meta query: get posts with value in a multidimensional array
- Get posts inside Get terms problem
- Better way to list links with different meta values using same meta key?
- Ho to add get_relative_date and post_except to this get_latest_post query?
- How to get the post content from a category on my homepage
- get_posts() not working in functions.php
- Getting only a specific post type with get_post?
- Display post details by post ID
- What is the p parameter in a get_posts() parameter array?
- Memory issue with get_posts( ) function
- get_posts() using an array of post ids [closed]
- How can I show the author’s latest post with title?
- Inserting post content into pages when using custom taxonomies
- get the post_date of ID
- Query get_posts by level depth
- Get posts in between specific ID’s
- How to use WordPress Conditional Tags in get_posts foreach loop
- Don’t submit post if post title exists
- Hide gravity forms
- Why would get_posts be ignoring posts with 2-digit ids?
- Not able to get random post
- Order custom post type by custom field (created by PODS) via PHP
- get_posts returns all posts
- Override Blog pages show at most with get_posts
- WordPress Random post (last 3 days posts)
- ‘child_of’ in get_posts not working
- Fetching All Posts (200+) in a Category – Performance Issues?
- Can’t get Category link inside get_posts
- List all pages including archive
- How do I get only a certain number of images from a post (minus the featured image)?
- Yet another get_posts() in explicitly defined order problem
- Sort get_children by menu_order
- Working with get_posts parameters/arrays/strings
- Getting post by specific date in Advance Custom Field
- List random posts on single page in the current category
- Divide the list into two columns (get_posts)
- Using post title as term in query, only working with single word titles
- Paging result of get_posts in function
- WordPress echoing content in seemingly random place
- How to use get_posts to filter against a single post id?
- Why set cookie from URL parameter doesnt work all the time?
- How to get a custom post with the largest ID (not the last post by date)
- Is there a way to extract a single post better than using get_posts()?
- Array merging multiple get_posts throwing Undefined offset error
- get_posts returning empty array
- Update all WordPress posts’s title and content then display them in a table
- Custom Category widget
- get_posts – check if custom field has content?
- Why does ‘meta_key’ return an empty array in get_pages
- Using get_posts, I need to use a combination of OR & AND relations
- get_posts array ‘between’ not behaving
- How to Retrieve Post ID of another page
- WordPress – List Sub Categories and Sub-Sub Categories, With Posts
- Sorting posts by specific order
- get posts based on category and post meta
- How to show only text from post in WordPress
- Install wordpress and replace database (from previous site)