Have you looked at WP_Object_Cache?
If you suspect there is unwanted caching happening in the code that generates the admin panel then you might be able to use functions from the WP_Object_Cache to clear it.
WP_Object_Cache is WordPress’ class for caching data which may be
computationally expensive to regenerate, such as the result of complex database queries.
Try the function wp_cache_flush() which clears all cached data.
Related Posts:
- Is it possible to completely stop WP_Query retrieving posts?
- Using get_posts vs. WP_Query
- Should I use Transients with W3 Total Cache APC Caching? [closed]
- How to do a query only on a specific admin page?
- Duplicate Queries
- wp_transients | wp_object_cache VS SESSIONS & Cookies?
- WP_Query pagination not working in admin area
- How to prevent queried posts from being added to cache?
- Transient caching for wp query
- Use ‘parse_query’ filter to show posts that from multiple criteria
- How do I force WP_query to fetch fresh, non-cached results?
- How to optimize multiple WP_Query() calls on one page?
- Assign Json file to WP_Query
- hide custom post types with specific meta key ON admin backend
- Should wp_query automatic meta and term cache priming be used in an enviroment with an object caching
- How to cache wp_query with pagination using transients?
- Transient api Caches confused
- Using Transients
- Exec wp query in slow motion to avoid memory error?
- How to view all posts of current day as default in admin
- Phpmyadmin – post editing
- Admin: Custom Query Returning Permissions Error
- WordPress AJAX Request returns 400
- How to use custom page for all posts with custom url, call another directory?
- Is it possible to give a classname to specific comments in the WordPress admin?
- Save large WP_Query to transient === false
- Check the stored / cached WP_Query with transients on post change
- get_posts query caching?
- How to set selected attribute on option after filter query?
- Pagination in WP query with transient API
- How to save the results of a query as a php file for an autocomplete search bar
- Filtering custom post type list in admin by custom meta key/value
- Post_count only shows the number of results per page
- What is “main query”? [duplicate]
- WP_Query order by multiple meta keys & fields
- How to prevent execution of default query, while preserving ability to use WP_Query in template?
- meta_query: using BETWEEN with floats and/or casting to DECIMAL
- How to remove_query_arg() for paginate_links()
- How to force a query conditional?
- WP_Query: query posts by ids from array?
- Changing the meta_query of the main query based on custom query_vars and using pre_get_posts
- Query Posts in a Predefined Order
- How to stop wordpress to make the default query?
- Use WP_Query with a custom SQL query
- WP_Query based on URL parameters
- Order by meta_value_num DESC and meta_value ASC on WP 4.0
- How to query for a week using key => value WP_Query argument notation?
- Pagination not working for Custom search form & custom result template
- How to use filter hook posts_join for querying taxonomy terms in posts_where?
- Order posts ascending with number in title
- How can I style future post?
- List taxonomy terms plus their latest post ordered by post date
- WordPress altering my custom query, How to fix it?
- Looping through tabular data
- Using next/previous_posts_link with customised search
- using wp_query to return posts w/ comment count > 0
- Order by meta_key in custom post type doesn’t affect the query
- Is there a PHP function that can match anything after the given URL, so my IF statement will work in each instance?
- How to create/modfiy WP_Query to search in post title OR custom field?
- Add a default meta_value to new posts
- How to detect custom query inside `posts_where` hook?
- Is temporarily overwriting $wp_query a bad idea?
- Array Chunks and Inserting Varying HTML in WP_Query
- Filter user list that meta_value is empty
- WP query exclude post within the last month / only show over 1 month old
- WordPress query for most recent posts from multiple categories
- How to output different posts per page?
- Order Posts by meta value AND published date
- Pass array of taxonomy terms to wp_query
- Modifying the Search Results
- WP_Query times out
- ACF – Get lowest & highest value from field
- Offset Page Loops and Pagination
- How to find a post id using the post_excerpt?
- wp_query add arguments using array_push if variable met
- tax_query: Order by slug?
- Comparing dates in custom field
- reducing the amount of wp_query calls
- WP_Query filter and order by meta ordering by wrong joined table
- List of the years with posts presented
- Unable to retrieve any posts of CPT in wp-admin
- Querying A Post That Includes Two Taxonomies Using JSON Rest API
- WP_Query condition affects posts_per_page count
- Advanced Taxonomy Queries WordPress
- Use post object from first query in second query
- Order by title without taking into account ‘the’
- Getting post revision and printing them on the post content site
- Editing the default wordpress search
- Slow page loads due to WordPress Core Query
- Set global $wp_query/$post variable for dynamic page generation
- Display tags with random thumbnail from selection of posts with that tag
- wp_query for multiple cities (multiple values in a metabox)
- Adding column to wp_posts table or join wp_posts table with another table
- slow WP_Query for non-admin user
- Changing sort order for presentation by Jetpack infinite scroll
- How to search for posts given post_content AND post_excerpt using WP_Query?
- get posts by meta_key from inside key of post meta
- Help optimizing slow WP_Query with meta_query
- meta_value_num not ordering all items
- Meta Queries – should nesting work after WP 4.1?