Skip to content

Instantly share code, notes, and snippets.

@Mediatros
Forked from PierreBichet/functions.php
Created January 4, 2018 13:53
Show Gist options
  • Save Mediatros/3e0c922bac7cf25a51ecde8175ab231c to your computer and use it in GitHub Desktop.
Save Mediatros/3e0c922bac7cf25a51ecde8175ab231c to your computer and use it in GitHub Desktop.
WP DIVI Bouton pour vider le cache local de Divi - Traduction FR
<?php
function ClearLocalCacheButton() { ?>
// Creation du bouton
<a href="#" onclick="ClearLocalCache()" class="et-pb-layout-buttons et-pb-layout-buttons-cache" title="Clear Cache">
<span>Vider le cache</span>
</a>
<script type="text/javascript">
// Place le bouton dans la barre d'onglets
jQuery(window).load(function(){
jQuery(".et-pb-layout-buttons-cache").insertAfter(jQuery(".et-pb-layout-buttons-clear"));
});
function ClearLocalCache() {
// Vide le cache et alerte l'utilisateur
alert("Le stockage des données en local a été effacé. Cliquez sur \"Mettre à jour\".");
window.localStorage.clear()
}
</script>
<?php }
add_action('admin_footer', 'ClearLocalCacheButton');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment