Skip to content

Instantly share code, notes, and snippets.

@hamidrezayazdani
Created February 9, 2021 05:52
Show Gist options
  • Save hamidrezayazdani/80847b5bab3e2a2948991d8068b4391b to your computer and use it in GitHub Desktop.
Save hamidrezayazdani/80847b5bab3e2a2948991d8068b4391b to your computer and use it in GitHub Desktop.
<?php
add_action( 'wp_footer', 'ywp_goftino_auto_pm' );
function ywp_goftino_auto_pm() {
echo '<script>
if (!localStorage.getItem("goftino_timing") || new Date().getTime() - localStorage.getItem("goftino_timing") >= 60000*24*60){
localStorage.setItem("goftino_timing", new Date().getTime());
localStorage.removeItem("goftino_autopm");
}
</script>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment