I have made changes in my CSS, but it doesn’t work. I know it’s because of caching from admin panel.
How to clear cache of my WordPress admin. Is there any method to clear the cache?
5 s
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.