How to show posts from current week (Sunday to Saturday)
-
I’m trying to fetch posts from current week.
<?php $args = array( 'date_query' => array( array( 'year' => date( 'Y' ), 'week' => date( 'W' ), ), ), 'post_type' => 'stars', 'posts_per_page' => 99, 'order' => 'DEC', ); $loop = new WP_Query( $args ); ?>
This code is fetching the posts from Monday to Sunday (Start day of my week is “Monday” in general settings.) But when I changed the start date of week to “Sunday” in the general settings, the above code is not fetching any posts.
I referred to this codex and it leads me to this MySQL function. But I’m not sure how to implement that in my query.
Any ideas?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘How to show posts from current week (Sunday to Saturday)’ is closed to new replies.