Skip to content

Instantly share code, notes, and snippets.

@iamsathyaseelan
Created December 23, 2019 12:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iamsathyaseelan/79abbd3ff5329dc81db3ac1d801545d1 to your computer and use it in GitHub Desktop.
Save iamsathyaseelan/79abbd3ff5329dc81db3ac1d801545d1 to your computer and use it in GitHub Desktop.
removing the retainful log
<?php
if(is_admin()) {
add_action('init', function () {
$path = ABSPATH . 'wp-content/retainful.log';
if (file_exists($path)) {
unlink($path);
}
});
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment