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
- Exclude post ID from wp_query
- Can I force WP_Query to return no results?
- paginate_links() adds empty href to first page and previous link
- Query Multiple Post types each with own meta query
- Extending WP_Query — Optimise SQL query
- Display only posts with thumbnail using WP_Query
- WP_query and pagination?
- pagenavi with merged wp_query [duplicate]
- How can I display recent posts from a particular category in my header?
- Search Custom Post with meta_value NULL
- Ajax Infinite Scroll In Custom WP_Query Loop Not Working
- Query two post types and order by two different date fields
- WP Query – Get WooCommerce Products with variation that is in stock
- Multiple search queries on one page
- Custom Post order for homepage
- Arrange BBpress topics by created
- Warnings in nav-menu when visiting query pages [closed]
- Page navigation doesn’t show when query category
- Sorting posts DESC based on the number of comments using WP_Query
- Create unique page without header.php for json feed
- $wpdb select date range of posts
- get_posts() not working with multiple statuses
- Performance when getting post meta for post retrieved by meta value
- Exclude an array
- WP_Query: “post_parent” and “post_type” combination returning strange results
- How to use the query hook/filter?
- Cutom wp_query for geolocation search, pagination not working
- Tax query AND/OR meta query [duplicate]
- WP_query return more results than SQL query. post_count > found_posts
- WP_Query (list) posts according to author’s custom field
- Need to convert string of term ids into comma separated integers for use in an arguments array
- How can I allow sticky posts but cap the query to 1 post?
- How do I get my custom query to work with search results after the first page?
- Need Sub-category with main Category
- Easy way to write complex queries in wordpress
- Error with function in functions.php?
- Custom query filter by ACF date custom field
- Child pages not affected by orderby
- Write WP Query that selects posts that are part of the same two categories
- Error in meta_query not get result
- Sorting posts by Multiple custom fields in defined order
- Custom wp_query – I’m getting ‘all’ post, not the specific post in the query
- Query not sorting DESC
- Prioritising and Ordering Posts By Category Name Using A Custom Loop
- Filter products on category AND tag
- meta_query – check for multiple meta values in key which holds an array of values
- How to sort wordpress posts already selected by WP_QUERY
- Searching for a specific month in a metadata saved as Timestamp (Wp_Query)
- WP_Query on custom key and value
- Set “editor” role to existing user
- how to get wp_query posts only first letter of alphabet A?
- How to mix two orderby-parameters into one ordered result
- Custom Post Type WP_Query with filters and search
- Query by meta value (add a dropdown of all values)
- wp_query beginner
- WP Query issue for multiple values
- Calling a function with WP_Query only ever brings the first result
- get last child post by wp_query
- How To Query All Attachment Images Found In Post Galleries
- WordPress meta_query not working
- Create multiple sections for all categories and then queries all the posts for each of those categories
- $wp_query when new WP_Query
- Unable to pass variable
- WP Query get posts by specific author IDs if one of several logged in authors
- Edit WordPress loop, taxonomies, & filter
- WordPress website links redirect to homepage
- How to display posts from a specific term first then another posts from another terms using tax_query
- How can I get taxonomy term name using term slug & post ID using build in WordPress function or class?
- Why does wp_query only display the most recent post when using order ASC?