Automatically purge and regenerate the Elementor CSS cache

<?php


/* Automatically purge and regenerate the Elementor CSS cache */
add_action('save_post', 'clear_elementor_cache');

function clear_elementor_cache() {
  // Check if Elementor is loaded and the hook has fired
  if ( did_action( 'elementor/loaded' ) ) {
  // Automatically purge and regenerate the Elementor CSS cache
    \Elementor\Plugin::instance()->files_manager->clear_cache();
  }
}


?>

Categories: ,