wp-73k/functions.php

33 lines
612 B
PHP
Raw Normal View History

2019-05-23 12:30:31 -04:00
<?php
/**
* Kickoff theme setup and build
*/
namespace WP_73k;
2019-05-23 12:30:31 -04:00
define( 'WP_73k_VERSION', wp_get_theme()->version );
define( 'WP_73k_DIR', __DIR__ );
define( 'WP_73k_URL', get_template_directory_uri() );
2019-05-23 12:30:31 -04:00
2021-07-04 18:16:33 -04:00
/**
* Social icons definition & functions
2021-07-04 18:16:33 -04:00
*/
require_once( WP_73k_DIR . '/socials.php' );
2021-07-04 09:26:44 -04:00
2021-07-06 14:57:45 -04:00
/**
* Custom functions
2021-07-06 14:57:45 -04:00
*/
require_once( WP_73k_DIR . '/custom-functions.php' );
/**
* Custom shortcodes for use in content
*/
require_once( WP_73k_DIR . '/custom-shortcodes.php');
2021-07-06 14:57:45 -04:00
2021-07-04 18:16:33 -04:00
/**
* Autoloader for browersync
*/
require_once( WP_73k_DIR . '/vendor/autoload.php' );
2019-10-24 23:06:18 -04:00
\A7\autoload( __DIR__ . '/src' );