Use current date as tag?
We can use e.g. current_time( ‘d-m-y’ ) to get the formatted current date. So you could try: $wpb_all_query = new WP_Query( [ ‘tag’ => current_time( ‘d-m-Y’ ) ] ); Also note the date_query parameter, if you want to target the post date part instead.