Created
August 18, 2014 17:57
-
-
Save DanielSantoro/8585d61c7f6acc778826 to your computer and use it in GitHub Desktop.
Mystile default `functions.php` - as of 8/18/14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// File Security Check | |
if ( ! empty( $_SERVER['SCRIPT_FILENAME'] ) && basename( __FILE__ ) == basename( $_SERVER['SCRIPT_FILENAME'] ) ) { | |
die ( 'You do not have sufficient permissions to access this page!' ); | |
} | |
?> | |
<?php | |
/*-----------------------------------------------------------------------------------*/ | |
/* Start WooThemes Functions - Please refrain from editing this section */ | |
/*-----------------------------------------------------------------------------------*/ | |
// Define the theme-specific key to be sent to PressTrends. | |
define( 'WOO_PRESSTRENDS_THEMEKEY', 'zdmv5lp26tfbp7jcwiw51ix9sj389e712' ); | |
// WooFramework init | |
require_once ( get_template_directory() . '/functions/admin-init.php' ); | |
/*-----------------------------------------------------------------------------------*/ | |
/* Load the theme-specific files, with support for overriding via a child theme. | |
/*-----------------------------------------------------------------------------------*/ | |
$includes = array( | |
'includes/theme-options.php', // Options panel settings and custom settings | |
'includes/theme-functions.php', // Custom theme functions | |
'includes/theme-actions.php', // Theme actions & user defined hooks | |
'includes/theme-comments.php', // Custom comments/pingback loop | |
'includes/theme-js.php', // Load JavaScript via wp_enqueue_script | |
'includes/sidebar-init.php', // Initialize widgetized areas | |
'includes/theme-widgets.php', // Theme widgets | |
'includes/theme-install.php', // Theme installation | |
'includes/theme-woocommerce.php', // WooCommerce options | |
'includes/theme-plugin-integrations.php' // Plugin integrations | |
); | |
// Allow child themes/plugins to add widgets to be loaded. | |
$includes = apply_filters( 'woo_includes', $includes ); | |
foreach ( $includes as $i ) { | |
locate_template( $i, true ); | |
} | |
/*-----------------------------------------------------------------------------------*/ | |
/* You can add custom functions below */ | |
/*-----------------------------------------------------------------------------------*/ | |
/*-----------------------------------------------------------------------------------*/ | |
/* Don't add any code below here or the sky will fall down */ | |
/*-----------------------------------------------------------------------------------*/ | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment