Update utilities.php location, include, and header.

This commit is contained in:
MickeyKay
2015-06-08 16:08:48 -07:00
parent 7e5e7b03dc
commit 88a3261cfd
2 changed files with 2 additions and 2 deletions
-21
View File
@@ -1,21 +0,0 @@
<?php
/**
* Utility functions.
*
* @since 2.1.0
*
* @package Trestle
*/
/**
* Custom logging function for development purposes.
*/
function trestle_log( $log ) {
if ( true === WP_DEBUG ) {
if ( is_array( $log ) || is_object( $log ) ) {
error_log( print_r( $log, true ) );
} else {
error_log( $log );
}
}
}