wp-73k/functions.php

15 lines
321 B
PHP
Raw Normal View History

2019-05-23 12:30:31 -04:00
<?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() );
2019-10-24 23:06:18 -04:00
require_once( WP_Tailwind_DIR . '/vendor/autoload.php' );
\A7\autoload( __DIR__ . '/src' );