PATH:
home
/
carfac
/
public_html
/
scooterthetort
/
wp-content
/
themes
/
brigsby
<?php /** * _ _ _ * __ ___ __ | | | | ___ ___ | |_ * \ \ /\ / / '_ \| |_| |/ _ \ / _ \| __| * \ V V /| |_) | _ | (_) | (_) | |_ * \_/\_/ | .__/|_| |_|\___/ \___/ \__| * |_| * ------------------------------------------- * -- HOOT THEME BUILT ON HYBRID FRAMEWORK --- * ------------------------------------------- * - incorporate code from Hybrid Base Theme - * -- Underscores Theme, Customizer Library -- * -- (see readme file for copyright info.) -- * ------------------------------------------- * * :: Theme's main functions file ::::::::::::::::::::::::::::::::::::::::::::: * :: Initialize and setup the theme framework, helper functions and objects :: * * To modify this theme, its a good idea to create a child theme. This way you can easily update * the main theme without losing your changes. To know more about how to create child themes * @see http://codex.wordpress.org/Theme_Development * @see http://codex.wordpress.org/Child_Themes * * Hooks, Actions and Filters are used throughout this theme. You should be able to do most of your * customizations without touching the main code. For more information on hooks, actions, and filters * @see http://codex.wordpress.org/Plugin_API * * @package Hoot * @subpackage Brigsby */ /** * Run in Debug mode to load unminified CSS and JS, and add other developer data to code. * - You can set HYBRIDEXTEND_DEBUG to true (default) for loading unminified files (useful for development/debugging) * - Or set HYBRIDEXTEND_DEBUG to false for loading minified files (for production i.e. live site) * * NOTE: If you uncomment this line, HYBRIDEXTEND_DEBUG value will override any option for minifying * files (if available) set via the theme options (customizer) in WordPress Admin */ if ( !defined( 'HYBRIDEXTEND_DEBUG' ) && defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) define( 'HYBRIDEXTEND_DEBUG', true ); /* Get the template directory and make sure it has a trailing slash. */ $hoot_base_dir = trailingslashit( get_template_directory() ); /* Load the Core framework and theme files */ require_once( $hoot_base_dir . 'hybrid/hybrid.php' ); require_once( $hoot_base_dir . 'hybrid/extend/extend.php' ); require_once( $hoot_base_dir . 'include/hoot-theme.php' ); /* Framework and Theme Setup files loaded */ do_action( 'hoot_loaded' ); /* Launch the Hybrid framework. */ global $hybridextend; $hybridextend = new Hybrid_Extend(); /* Framework Setup complete */ do_action( 'hybrid_after_setup' ); /* Launch the Theme */ global $hoot_theme; $hoot_theme = new Hoot_Theme(); /* Hoot Theme Setup complete */ do_action( 'hoot_theme_after_setup' );
[-] README.txt
[edit]
[+]
images
[-] index.php
[edit]
[-] license.txt
[edit]
[+]
css
[+]
widget
[-] sidebar-shop.php
[edit]
[-] front-page.php
[edit]
[-] 404.php
[edit]
[-] style.css
[edit]
[-] comments.php
[edit]
[+]
woocommerce
[-] functions.php
[edit]
[-] sidebar.php
[edit]
[-] header.php
[edit]
[+]
hybrid
[+]
js
[-] single.php
[edit]
[-] page.php
[edit]
[+]
template-parts
[+]
include
[-] style.min.css
[edit]
[-] searchform.php
[edit]
[+]
..
[-] screenshot.jpg
[edit]
[+]
languages
[-] footer.php
[edit]