Is there a way to disable post meta caching for development?
There’s no caching system in WordPress core that would cause the issues you’re having. The post meta cache (WP_Object_Cache) is not persistent. Its purpose is to ensure that meta data is only loaded once per page, not every time get_post_meta(), for example, is used, but it does not cache those queries across page loads. Therefore … Read more