The date query for WP_Query
supports several options, including before
and after
. Using just before
, you can fetch posts from before a certain date (excluding posts from that date on):
$args = array(
'date_query' => array(
array(
'column' => 'post_date_gmt',
'before' => '1 month ago'
)
),
'posts_per_page' => -1,
);
Furthermore, you can specify whether it should be inclusive (date specified is matched as well) or not, using the inclusive
key, which defaults to false
.
Related Posts:
- When should you use WP_Query vs query_posts() vs get_posts()?
- Get post ids from WP_Query?
- Some doubts about how the main query and the custom query works in this custom theme?
- Wp get all the sub pages of the parent using wp query
- How to query for most viewed posts and show top 5
- Using OR conditions in meta_query for query_posts argument
- Query Posts in a Predefined Order
- Get posts by menu ID
- WordPress Custom Query to show posts from last x years
- Get posts by meta data OR title
- Perform query with meta_value date
- Using is_main_query to select custom post type on certain page
- WP_Query ordered by custom field that is a date string?
- Meta Query with date and time on the same Day before given time
- get_the_title($postID) OR get_the_title()?
- Display Posts by modifying the where clause only for my query
- How do I create my own nested meta_query using posts_where / posts_join?
- How to use filter hook posts_join for querying taxonomy terms in posts_where?
- Best practice for multiple queries on page
- How to Get All Posts but the Private ones?
- How to query ‘posts_per_page’ to display a different blog posts index template?
- How to find out what “Blog pages show at most” is set to [duplicate]
- 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
- How can I pick a single post from the latest 3?
- 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 custom taxonomy not working
- Query posts by specific word on title
- 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
- Custom Query num_rows returns wrong amount
- Fetch Record based on meta key dates
- How to display multiple custom fields with the same meta_key in an ascending order?
- add active class based on permalink and url
- Bypass “supress_filters” in WP Query
- Filtering out child category posts from parent category archive not working
- 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)
- How to query for all posts that have a particular meta key?
- Advanced WP Query and/or
- 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
- get_posts output always same post
- How to create custom query by keyword in post title?
- 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 can I comment comma-separated array values?
- How to use ‘WP_Query’ or ‘query_posts’ to display content in a descending order
- 2 queries with counters
- Max Posts and Memory Limit
- Why doesn’t my WP Meta Query return any results?
- Multiple Query_Posts
- 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
- 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
- Duplice post with standard WP loop – fixed by using query_posts() instead
- 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?
- Order by meta date with a thousanth of a second defaults to post order
- Custom query for custom post type not getting correct post ID
- Problem with my loops
- My entry results are not consistently alphabetized
- Merge two queries and remove duplicate
- 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]
- Seach and categories not working when ignoring sticky posts in main loop
- posts_per_page increment additional post
- Calling body_class and wp_nav_menu for a different post
- Modify query to exclude certain ids and certain parents and its corresponding children
- How to order by datediff in WP loop?
- how to exclude store in clipper theme wordpress code php
- 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()?
- How to query post ids liked by the Author
- get contents and permalink from a specified page
- Help in query for list links
- Exclude categories and subcategories in QueryLoop
- WordPress pagination returns the same posts
- Incorrect posts displayed on category page