wp-73k/functions.php
2019-05-23 10:30:31 -06:00

18 lines
329 B
PHP

<?php
/**
* Kickoff theme setup and build
*/
namespace WP_Tailwind;
define( 'WP_Tailwind_VERSION', wp_get_theme()->version );
define( 'WP_Tailwind_DIR', __DIR__ );
define( 'WP_Tailwind_URL', get_template_directory_uri() );
try {
\A7\autoload( __DIR__ . '/src' );
} catch ( \Exception $e ) {
echo $e->getMessage();
die;
}