19 lines
336 B
PHP
Executable File
19 lines
336 B
PHP
Executable File
<?php
|
|
|
|
// #################################
|
|
// FUNCTION ERROR LOG
|
|
// #################################
|
|
|
|
|
|
// Error log
|
|
if (!function_exists('write_log')) {
|
|
function write_log($log) {
|
|
if (true === WP_DEBUG) {
|
|
if (is_array($log) || is_object($log)) {
|
|
error_log(print_r($log, true));
|
|
} else {
|
|
error_log($log);
|
|
}
|
|
}
|
|
}
|
|
} |