From 4aa4be182b32d5bafee7fb090956ce6c7708f53a Mon Sep 17 00:00:00 2001 From: Ben Word Date: Sun, 23 Jun 2013 12:15:08 -0500 Subject: [PATCH] Move theme wrapper into separate file --- functions.php | 1 + lib/utils.php | 52 ------------------------------------------------- lib/wrapper.php | 52 +++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 53 insertions(+), 52 deletions(-) create mode 100644 lib/wrapper.php diff --git a/functions.php b/functions.php index 8a6ff6a..2ca45c0 100644 --- a/functions.php +++ b/functions.php @@ -4,6 +4,7 @@ */ require_once locate_template('/lib/utils.php'); // Utility functions require_once locate_template('/lib/init.php'); // Initial theme setup and constants +require_once locate_template('/lib/wrapper.php'); // Theme wrapper class require_once locate_template('/lib/sidebar.php'); // Sidebar class require_once locate_template('/lib/config.php'); // Configuration require_once locate_template('/lib/activation.php'); // Theme activation diff --git a/lib/utils.php b/lib/utils.php index 4a663be..f818029 100644 --- a/lib/utils.php +++ b/lib/utils.php @@ -1,56 +1,4 @@