Skip to content

Instantly share code, notes, and snippets.

@joedooley
Created October 11, 2015 02:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joedooley/34045b74d53fcf94817e to your computer and use it in GitHub Desktop.
Save joedooley/34045b74d53fcf94817e to your computer and use it in GitHub Desktop.
Load Framework Files and Features
<?php
/**
* Genesis Framework.
*
* WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances.
* Please do all modifications in the form of a child theme.
*
* @package Genesis\Framework
* @author StudioPress
* @license GPL-2.0+
* @link http://my.studiopress.com/themes/genesis/
*/
//* Run the genesis_pre Hook
do_action( 'genesis_pre' );
add_action( 'genesis_init', 'genesis_i18n' );
/**
* Load the Genesis textdomain for internationalization.
*
* @since 1.9.0
*
* @uses load_theme_textdomain()
*
*/
function genesis_i18n() {
if ( ! defined( 'GENESIS_LANGUAGES_DIR' ) )
define( 'GENESIS_LANGUAGES_DIR', get_template_directory() . '/lib/languages' );
load_theme_textdomain( 'genesis', GENESIS_LANGUAGES_DIR );
}
add_action( 'genesis_init', 'genesis_theme_support' );
/**
* Activates default theme features.
*
* @since 1.6.0
*/
function genesis_theme_support() {
add_theme_support( 'menus' );
add_theme_support( 'post-thumbnails' );
add_theme_support( 'automatic-feed-links' );
add_theme_support( 'genesis-inpost-layouts' );
add_theme_support( 'genesis-archive-layouts' );
add_theme_support( 'genesis-admin-menu' );
add_theme_support( 'genesis-seo-settings-menu' );
add_theme_support( 'genesis-import-export-menu' );
add_theme_support( 'genesis-readme-menu' );
add_theme_support( 'genesis-auto-updates' );
add_theme_support( 'genesis-breadcrumbs' );
//* Maybe add support for Genesis menus
if ( ! current_theme_supports( 'genesis-menus' ) )
add_theme_support( 'genesis-menus', array(
'primary' => __( 'Primary Navigation Menu', 'genesis' ),
'secondary' => __( 'Secondary Navigation Menu', 'genesis' ),
) );
//* Maybe add support for structural wraps
if ( ! current_theme_supports( 'genesis-structural-wraps' ) )
add_theme_support( 'genesis-structural-wraps', array( 'header', 'menu-primary', 'menu-secondary', 'footer-widgets', 'footer' ) );
//* Turn on HTML5 and responsive viewport if Genesis is active
if ( ! is_child_theme() ) {
add_theme_support( 'html5', array( 'comment-list', 'comment-form', 'search-form', 'gallery', 'caption' ) );
add_theme_support( 'genesis-responsive-viewport' );
add_theme_support( 'genesis-accessibility', array( 'skip-links', 'search-form', 'drop-down-menu', 'headings', 'rems' ) );
}
}
add_action( 'genesis_init', 'genesis_post_type_support' );
/**
* Initialize post type support for Genesis features (Layout selector, SEO).
*
* @since 1.8.0
*/
function genesis_post_type_support() {
add_post_type_support( 'post', array( 'genesis-seo', 'genesis-scripts', 'genesis-layouts', 'genesis-rel-author' ) );
add_post_type_support( 'page', array( 'genesis-seo', 'genesis-scripts', 'genesis-layouts' ) );
}
add_action( 'init', 'genesis_post_type_support_post_meta', 11 );
/**
* Add post type support for post meta to all post types except page.
*
* @since 2.2.0
*/
function genesis_post_type_support_post_meta() {
$public_post_types = get_post_types( array( 'public' => true ) );
foreach ( $public_post_types as $post_type ) {
if ( 'page' !== $post_type ) {
add_post_type_support( $post_type, 'genesis-entry-meta-before-content' );
add_post_type_support( $post_type, 'genesis-entry-meta-after-content' );
}
}
}
add_action( 'genesis_init', 'genesis_constants' );
/**
* This function defines the Genesis theme constants
*
* @since 1.6.0
*/
function genesis_constants() {
//* Define Theme Info Constants
define( 'PARENT_THEME_NAME', 'Genesis' );
define( 'PARENT_THEME_VERSION', '2.2.2' );
define( 'PARENT_THEME_BRANCH', '2.2' );
define( 'PARENT_DB_VERSION', '2205' );
define( 'PARENT_THEME_RELEASE_DATE', date_i18n( 'F j, Y', '1441756800' ) );
# define( 'PARENT_THEME_RELEASE_DATE', 'TBD' );
//* Define Directory Location Constants
define( 'PARENT_DIR', get_template_directory() );
define( 'CHILD_DIR', get_stylesheet_directory() );
define( 'GENESIS_IMAGES_DIR', PARENT_DIR . '/images' );
define( 'GENESIS_LIB_DIR', PARENT_DIR . '/lib' );
define( 'GENESIS_ADMIN_DIR', GENESIS_LIB_DIR . '/admin' );
define( 'GENESIS_ADMIN_IMAGES_DIR', GENESIS_LIB_DIR . '/admin/images' );
define( 'GENESIS_JS_DIR', GENESIS_LIB_DIR . '/js' );
define( 'GENESIS_CSS_DIR', GENESIS_LIB_DIR . '/css' );
define( 'GENESIS_CLASSES_DIR', GENESIS_LIB_DIR . '/classes' );
define( 'GENESIS_FUNCTIONS_DIR', GENESIS_LIB_DIR . '/functions' );
define( 'GENESIS_SHORTCODES_DIR', GENESIS_LIB_DIR . '/shortcodes' );
define( 'GENESIS_STRUCTURE_DIR', GENESIS_LIB_DIR . '/structure' );
define( 'GENESIS_TOOLS_DIR', GENESIS_LIB_DIR . '/tools' );
define( 'GENESIS_WIDGETS_DIR', GENESIS_LIB_DIR . '/widgets' );
//* Define URL Location Constants
define( 'PARENT_URL', get_template_directory_uri() );
define( 'CHILD_URL', get_stylesheet_directory_uri() );
define( 'GENESIS_IMAGES_URL', PARENT_URL . '/images' );
define( 'GENESIS_LIB_URL', PARENT_URL . '/lib' );
define( 'GENESIS_ADMIN_URL', GENESIS_LIB_URL . '/admin' );
define( 'GENESIS_ADMIN_IMAGES_URL', GENESIS_LIB_URL . '/admin/images' );
define( 'GENESIS_JS_URL', GENESIS_LIB_URL . '/js' );
define( 'GENESIS_CLASSES_URL', GENESIS_LIB_URL . '/classes' );
define( 'GENESIS_CSS_URL', GENESIS_LIB_URL . '/css' );
define( 'GENESIS_FUNCTIONS_URL', GENESIS_LIB_URL . '/functions' );
define( 'GENESIS_SHORTCODES_URL', GENESIS_LIB_URL . '/shortcodes' );
define( 'GENESIS_STRUCTURE_URL', GENESIS_LIB_URL . '/structure' );
define( 'GENESIS_WIDGETS_URL', GENESIS_LIB_URL . '/widgets' );
//* Define Settings Field Constants (for DB storage)
define( 'GENESIS_SETTINGS_FIELD', apply_filters( 'genesis_settings_field', 'genesis-settings' ) );
define( 'GENESIS_SEO_SETTINGS_FIELD', apply_filters( 'genesis_seo_settings_field', 'genesis-seo-settings' ) );
define( 'GENESIS_CPT_ARCHIVE_SETTINGS_FIELD_PREFIX', apply_filters( 'genesis_cpt_archive_settings_field_prefix', 'genesis-cpt-archive-settings-' ) );
}
add_action( 'genesis_init', 'genesis_load_framework' );
/**
* Loads all the framework files and features.
*
* The genesis_pre_framework action hook is called before any of the files are
* required().
*
* If a child theme defines GENESIS_LOAD_FRAMEWORK as false before requiring
* this init.php file, then this function will abort before any other framework
* files are loaded.
*
* @since 1.6.0
*
* @global $_genesis_formatting_allowed_tags Array of allowed tags for output formatting.
*/
function genesis_load_framework() {
//* Run the genesis_pre_framework Hook
do_action( 'genesis_pre_framework' );
//* Short circuit, if necessary
if ( defined( 'GENESIS_LOAD_FRAMEWORK' ) && false === GENESIS_LOAD_FRAMEWORK )
return;
//* Load Framework
require_once( GENESIS_LIB_DIR . '/framework.php' );
//* Load Classes
require_once( GENESIS_CLASSES_DIR . '/admin.php' );
require_if_theme_supports( 'genesis-breadcrumbs', GENESIS_CLASSES_DIR . '/breadcrumb.php' );
require_once( GENESIS_CLASSES_DIR . '/sanitization.php' );
//* Load Functions
require_once( GENESIS_FUNCTIONS_DIR . '/upgrade.php' );
require_once( GENESIS_FUNCTIONS_DIR . '/compat.php' );
require_once( GENESIS_FUNCTIONS_DIR . '/general.php' );
require_once( GENESIS_FUNCTIONS_DIR . '/options.php' );
require_once( GENESIS_FUNCTIONS_DIR . '/image.php' );
require_once( GENESIS_FUNCTIONS_DIR . '/markup.php' );
require_if_theme_supports( 'genesis-breadcrumbs', GENESIS_FUNCTIONS_DIR . '/breadcrumb.php' );
require_once( GENESIS_FUNCTIONS_DIR . '/menu.php' );
require_once( GENESIS_FUNCTIONS_DIR . '/layout.php' );
require_once( GENESIS_FUNCTIONS_DIR . '/formatting.php' );
require_once( GENESIS_FUNCTIONS_DIR . '/seo.php' );
require_once( GENESIS_FUNCTIONS_DIR . '/widgetize.php' );
require_once( GENESIS_FUNCTIONS_DIR . '/feed.php' );
if ( apply_filters( 'genesis_load_deprecated', true ) )
require_once( GENESIS_FUNCTIONS_DIR . '/deprecated.php' );
//* Load Shortcodes
require_once( GENESIS_SHORTCODES_DIR . '/post.php' );
require_once( GENESIS_SHORTCODES_DIR . '/footer.php' );
//* Load Structure
require_once( GENESIS_STRUCTURE_DIR . '/header.php' );
require_once( GENESIS_STRUCTURE_DIR . '/footer.php' );
require_once( GENESIS_STRUCTURE_DIR . '/menu.php' );
require_once( GENESIS_STRUCTURE_DIR . '/layout.php' );
require_once( GENESIS_STRUCTURE_DIR . '/post.php' );
require_once( GENESIS_STRUCTURE_DIR . '/loops.php' );
require_once( GENESIS_STRUCTURE_DIR . '/comments.php' );
require_once( GENESIS_STRUCTURE_DIR . '/sidebar.php' );
require_once( GENESIS_STRUCTURE_DIR . '/archive.php' );
require_once( GENESIS_STRUCTURE_DIR . '/search.php' );
//* Load Admin
if ( is_admin() ) :
require_once( GENESIS_ADMIN_DIR . '/menu.php' );
require_once( GENESIS_ADMIN_DIR . '/theme-settings.php' );
require_once( GENESIS_ADMIN_DIR . '/seo-settings.php' );
require_once( GENESIS_ADMIN_DIR . '/cpt-archive-settings.php' );
require_once( GENESIS_ADMIN_DIR . '/import-export.php' );
require_once( GENESIS_ADMIN_DIR . '/inpost-metaboxes.php' );
require_once( GENESIS_ADMIN_DIR . '/whats-new.php' );
endif;
require_once( GENESIS_ADMIN_DIR . '/customizer.php' );
require_once( GENESIS_ADMIN_DIR . '/term-meta.php' );
require_once( GENESIS_ADMIN_DIR . '/user-meta.php' );
//* Load Javascript
require_once( GENESIS_JS_DIR . '/load-scripts.php' );
//* Load CSS
require_once( GENESIS_CSS_DIR . '/load-styles.php' );
//* Load Widgets
require_once( GENESIS_WIDGETS_DIR . '/widgets.php' );
//* Load CLI command
if ( defined( 'WP_CLI' ) && WP_CLI ) {
include GENESIS_CLASSES_DIR . '/cli.php';
}
global $_genesis_formatting_allowedtags;
$_genesis_formatting_allowedtags = genesis_formatting_allowedtags();
}
//* Run the genesis_init hook
do_action( 'genesis_init' );
//* Run the genesis_setup hook
do_action( 'genesis_setup' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment