WP_Query not resetting after wp_reset_postdata
I have this custom query:
if (isset($_COOKIE['myCookie']) $_COOKIE['myCookie'] == $f_r) {
$args = array(
'posts_per_page' = 4,
'nopaging' = false,
'order' = 'ASC',
'orderby' = 'rand',
'tax_query' = array(
array(
'taxonomy' = 'Count',
'field' = 'slug',
'terms' = $f_r,
)
)
);
$query = new WP_Query( $args );
if ( $query-have_posts() ) {
while ( $query-have_posts() ) {
$query-the_post();
a href="?php the_field('the_link'); ? "
img src="?php echo the_field('the_img'); ?" /
/a
} else {
echo 'Oops! Something went wrong!';
}
wp_reset_postdata();
The query works, but it does not reset the data. Every time a visitor lands on the page where the query runs, it shows the exact same 4 posts as it always does.
This code run just fine in my local environment (fetching different posts each time it runs), but on the live server it seems to be "fixed" to 4 specific posts.
I don't understand why this is happening, so I could really use some advice here. Thanks!
Ps. It's not the plugins or theme, because it works fine in a local environment.
Topic wp-reset-postdata order wp-query custom-post-types Wordpress
Category Web