-
Notifications
You must be signed in to change notification settings - Fork 13
/
functions.php
39 lines (28 loc) · 1.13 KB
/
functions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/**
* Suki functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package Suki
*/
// Prevent direct access.
if ( ! defined( 'ABSPATH' ) ) exit;
/**
* ====================================================
* Theme constants
* ====================================================
*/
define( 'SUKI_INCLUDES_DIR', trailingslashit( get_template_directory() ) . 'includes' );
define( 'SUKI_IMAGES_URL', trailingslashit( get_template_directory_uri() ) . 'assets/images' );
define( 'SUKI_CSS_URL', trailingslashit( get_template_directory_uri() ) . 'assets/css' );
define( 'SUKI_JS_URL', trailingslashit( get_template_directory_uri() ) . 'assets/js' );
define( 'SUKI_VERSION', wp_get_theme( get_template() )->get( 'Version' ) );
define( 'SUKI_ASSETS_SUFFIX', SCRIPT_DEBUG ? '' : '.min' );
define( 'SUKI_PRO_WEBSITE_URL', esc_url( 'https://sukiwp.com/pro/' ) );
/**
* ====================================================
* Main theme class
* ====================================================
*/
require_once( SUKI_INCLUDES_DIR . '/class-suki.php' );