Skip to content

Instantly share code, notes, and snippets.

@rupokify
Created September 22, 2021 06:50
Show Gist options
  • Save rupokify/c07590d98f90ed952b88b20f0bd2af11 to your computer and use it in GitHub Desktop.
Save rupokify/c07590d98f90ed952b88b20f0bd2af11 to your computer and use it in GitHub Desktop.
Flush Divi Theme Static Cache
<?php
function flush_divi() {
include_once get_template_directory(). '/core/components/PageResource.php';
ET_Core_PageResource::remove_static_resources( 'all', 'all' );
}
add_action('wp_head', 'flush_divi');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment