// PURGE DO SITEMAP,HOME,CATEGORIAS E ARQUIVOS (Correio de Santa Maria) add_action('publish_post',function($post_id){if (class_exists('LiteSpeed_Cache_API')){// Purge post LiteSpeed_Cache_API::purge_post($post_id);// Purge home LiteSpeed_Cache_API::purge_url(/wp-content/themes/hello-theme-child-master/home_url('/'));// Purge categorias $categories=get_the_category($post_id);if (!empty($categories)){foreach ($categories as $cat){LiteSpeed_Cache_API::purge_url(/wp-content/themes/hello-theme-child-master/get_category_link($cat->term_id))}}// Purge sitemaps (super importante) LiteSpeed_Cache_API::purge_url(/wp-content/themes/hello-theme-child-master/home_url('/sitemap_index.xml'));LiteSpeed_Cache_API::purge_url(/wp-content/themes/hello-theme-child-master/home_url('/post-sitemap.xml'));LiteSpeed_Cache_API::purge_url(/wp-content/themes/hello-theme-child-master/home_url('/category-sitemap.xml'));LiteSpeed_Cache_API::purge_url(/wp-content/themes/hello-theme-child-master/home_url('/page-sitemap.xml'));// Purge geral mínimo LiteSpeed_Cache_API::purge_all()}});