Why I can’t get old posts instead of recent with WP_Query?
Are you actually using ‘after’ => date(‘Y-m-d h:i’,time()) in your code? That will always ask for posts older newer that the exact current time when that query is run. Something like this: ‘after’ => date( ‘Y-m-d h:i’, time() – 60 * 60 * 24 ) would give you a reference for 24 hours in the … Read more