Rename inc/ to lib/

This commit is contained in:
Ben Word
2012-08-20 19:19:39 -05:00
parent 9801e69b3b
commit 5c777f361b
13 changed files with 11 additions and 11 deletions

View File

@@ -9,7 +9,7 @@ Roots is a starting WordPress theme made for developers thats based on [HTML5
## Configuration
Edit `inc/config.php` to enable support for major functionality and to define constants that are used throughout the theme.
Edit `lib/config.php` to enable support for major functionality and to define constants that are used throughout the theme.
## Features

View File

@@ -5,16 +5,16 @@
if (!defined('__DIR__')) { define('__DIR__', dirname(__FILE__)); }
require_once locate_template('/inc/utils.php'); // Utility functions
require_once locate_template('/inc/config.php'); // Configuration and constants
require_once locate_template('/inc/activation.php'); // Theme activation
require_once locate_template('/inc/template-tags.php'); // Template tags
require_once locate_template('/inc/cleanup.php'); // Cleanup
require_once locate_template('/inc/scripts.php'); // Scripts and stylesheets
require_once locate_template('/inc/htaccess.php'); // Rewrites for assets, H5BP .htaccess
require_once locate_template('/inc/actions.php'); // Actions
require_once locate_template('/inc/widgets.php'); // Sidebars and widgets
require_once locate_template('/inc/custom.php'); // Custom functions
require_once locate_template('/lib/utils.php'); // Utility functions
require_once locate_template('/lib/config.php'); // Configuration and constants
require_once locate_template('/lib/activation.php'); // Theme activation
require_once locate_template('/lib/template-tags.php'); // Template tags
require_once locate_template('/lib/cleanup.php'); // Cleanup
require_once locate_template('/lib/scripts.php'); // Scripts and stylesheets
require_once locate_template('/lib/htaccess.php'); // Rewrites for assets, H5BP .htaccess
require_once locate_template('/lib/actions.php'); // Actions
require_once locate_template('/lib/widgets.php'); // Sidebars and widgets
require_once locate_template('/lib/custom.php'); // Custom functions
function roots_setup() {