mirror of
https://github.com/ascribe/wp-theme
synced 2024-12-22 17:23:55 +01:00
29 lines
968 B
PHP
29 lines
968 B
PHP
<?php
|
|
|
|
/**
|
|
* ascribe functions and definitions
|
|
*
|
|
* When using a child theme (see http://codex.wordpress.org/Theme_Development and
|
|
* http://codex.wordpress.org/Child_Themes), you can override certain functions
|
|
* (those wrapped in a function_exists() call) by defining them first in your child theme's
|
|
* functions.php file. The child theme's functions.php file is included before the parent
|
|
* theme's file, so the child theme functions would be used.
|
|
*
|
|
* @package ascribe
|
|
* @since 0.1.0
|
|
*/
|
|
|
|
// Useful global constants
|
|
define( 'TTL_VERSION', '0.1.0' );
|
|
define( 'TTL_URL', get_stylesheet_directory_uri() );
|
|
define( 'TTL_TEMPLATE_URL', get_template_directory_uri() );
|
|
define( 'TTL_PATH', get_template_directory() . '/' );
|
|
define( 'TTL_INC', TTL_PATH . 'includes/' );
|
|
|
|
// Include compartmentalized functions
|
|
require_once TTL_INC . 'functions/core.php';
|
|
|
|
// Include lib classes
|
|
|
|
// Run the setup functions
|
|
TenUp\ascribe\Core\setup(); |