Your syntax is incorrect for your date_query
. It should be an array of an array, not just an array.
I also suspect that your problem might be related to PHP and not WordPress.
Your before
date is invalid. PHP only supports dates between 13 December 1901 and 19 January 2038, so your dates need to between those two dates. For reference, see date
You would also want to include the ‘inclusive’ parameter and set it to true
for exact matches
Your query should be something like
$args = array(
'post_type' => 'post',
'date_query' => array(
array(
'after' => '1980-01-01',
'before' => '2038-01-01',
'inclusive' => true,
),
),
'cat' => 41,
'fields' => 'ids',
);
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
- Alternative to get_posts() due to multithreading cache crash
- How to get current post ID in quick edit callback
- get_posts with meta_compare=’LIKE’ not working
- How to restore deleted pages/posts?
- get posts based on meta value of the author
- Get the exact SQL query that get_posts() generated
- 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 inside cron
- get_posts not honoring post_status
- get_posts only children from certain parents
- Problem with get_posts, tax_query and counting the number of posts
- get_posts cannot grab from specific category
- Check If posts exist in custom post type category, outside of loop
- How to limit get_posts()?
- With get_posts(), how can I put a category as a variable
- What’s the difference between “get_posts” and “wp_get_recent_posts” when used with “setup_postdata”?
- 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 latest posts from multiple categories
- get_posts() returns all posts rather than the ones specified with ‘post_author’ =>
- Query random post from different categories
- Posts not showing in correct Alphabetical or ID order when using get_posts / orderby but only on production server
- Secondary Query Is Breaking Main Query
- var_dump and print_r cause white screen
- `get_posts()` ignore my custom post
- How to query posts to include specific pages of one post type, and all pages of another post type?
- 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
- Better way to list links with different meta values using same meta key?
- How to get the post content from a category on my homepage
- get_posts() not working in functions.php
- Query Problem in getting top viewed posts
- get_posts not working as expected
- Get all pages and posts with get_pages() or get_posts()
- Display post details by post ID
- What is the p parameter in a get_posts() parameter array?
- Iterate over get_post_meta() result
- Inserting post content into pages when using custom taxonomies
- Get posts by language in Polylang plugin
- 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?
- Order custom post type by custom field (created by PODS) via PHP
- get_posts returns all posts
- WordPress Random post (last 3 days posts)
- Cron task firing but function not working
- wp json api – get posts by category
- Fetching All Posts (200+) in a Category – Performance Issues?
- Get all posts with a certain meta key, except for one with specific title
- 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
- List random posts on single page in the current category
- Add ul to its children with get_posts
- get_posts by id not working
- Divide the list into two columns (get_posts)
- Get posts in archive page
- 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?
- 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
- get_post Question
- get the_content by ID and save the result to one array
- Custom Category widget
- get_posts – check if custom field has content?
- Why does ‘meta_key’ return an empty array in get_pages
- Get number of posts in each category since last visit
- Get_posts not returning any posts when used with switch_to_blog
- How to Retrieve Post ID of another page
- WordPress – List Sub Categories and Sub-Sub Categories, With Posts
- How to show only 1 post from a specific category on the front-page
- Query for draft or scheduled post
- Sorting posts by specific order
- Function to get content by ID
- get posts based on category and post meta
- How to show only text from post in WordPress