Rel: cache bump on save

2025-09-18
// Bump de cache global para os relacionados ao salvar posts/termos add_action('save_post', function(){ update_option('gl_rel_cache_bump', (int)get_option('gl_rel_cache_bump',0)+1 ); }); add_action('created_term', function(){ update_option('gl_rel_cache_bump', (int)get_option('gl_rel_cache_bump',0)+1 ); }); add_action('edited_term', function(){ update_option('gl_rel_cache_bump', (int)get_option('gl_rel_cache_bump',0)+1 ); });