This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
2014-12-10 11:36:38 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* understrap functions and definitions
|
|
|
|
*
|
|
|
|
* @package understrap
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Theme setup and custom theme supports.
|
|
|
|
*/
|
|
|
|
require get_template_directory() . '/inc/setup.php';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register widget area.
|
|
|
|
*
|
|
|
|
* @link http://codex.wordpress.org/Function_Reference/register_sidebar
|
|
|
|
*/
|
|
|
|
require get_template_directory() . '/inc/widgets.php';
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enqueue scripts and styles.
|
|
|
|
*/
|
2014-12-11 16:41:11 +00:00
|
|
|
require get_template_directory() . '/inc/enqueue.php';
|
2014-12-10 11:36:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Implement the Custom Header feature.
|
|
|
|
*/
|
|
|
|
//require get_template_directory() . '/inc/custom-header.php';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom template tags for this theme.
|
|
|
|
*/
|
|
|
|
require get_template_directory() . '/inc/template-tags.php';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Custom functions that act independently of the theme templates.
|
|
|
|
*/
|
|
|
|
require get_template_directory() . '/inc/extras.php';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Customizer additions.
|
|
|
|
*/
|
|
|
|
require get_template_directory() . '/inc/customizer.php';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load Jetpack compatibility file.
|
|
|
|
*/
|
|
|
|
require get_template_directory() . '/inc/jetpack.php';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load custom WordPress nav walker.
|
|
|
|
*/
|
2014-12-23 14:54:43 +00:00
|
|
|
require get_template_directory() . '/inc/bootstrap-wp-navwalker.php';
|
|
|
|
|
|
|
|
require_once('inc/wp-updates-theme.php');
|
|
|
|
new WPUpdatesThemeUpdater_1114( 'http://wp-updates.com/api/2/theme', basename( get_template_directory() ) );
|