Tuesday, June 15, 2021

WP - write log in wordpress

Write log in wordpress: 

functions.php:

if (!function_exists('write_log')) {
  function write_log($log) {
    if (true === WP_DEBUG) {
      if (is_array($log) || is_object($log)) {
        error_log(print_r($logtrue));
      } else {
        error_log($log);
      }
    }
  }
}

Then call write_log() in below way:
write_log("SOME TEXT");
Or
write_log($variable_to_test);

.:Happy coding:.



No comments:

Post a Comment

Suomen kieli (Imperfekti)

In Finnish, the imperfekti is the past tense that describes actions that happened in the past, like the English simple past (e.g., "I ...