From 732a38019a2b42404a4a1be3169f032a52cea1dd Mon Sep 17 00:00:00 2001 From: Takashi Kitajima Date: Thu, 13 Oct 2016 14:43:08 +0900 Subject: [PATCH] Fix auto loader bug --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index ae6b3475..f7d6f874 100644 --- a/functions.php +++ b/functions.php @@ -15,7 +15,7 @@ /** * Loads the auto loader */ -//include_once( get_template_directory() . '/vendor/autoload.php' ); +include_once( get_template_directory() . '/vendor/autoload.php' ); spl_autoload_register( function ( $class ) { $slug = preg_replace( '/^\\Mimizuku/', '', $class ); $slug = str_replace( '\\', '/', $slug );