initial commit, yay
This commit is contained in:
commit
88f688ad6d
49 changed files with 15475 additions and 0 deletions
17
functions.php
Normal file
17
functions.php
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue