//Auto Clear REGENERATE CACHE OF ELEMENTOR
add_action('save_post', 'clear_elementor_cache');
function clear_elementor_cache() {
if ( did_action( 'elementor/loaded' ) ) {
// Automatically purge and regenerate the Elementor CSS cache
\Elementor\Plugin::instance()->files_manager->clear_cache();
}
}