-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfunctions.php
39 lines (26 loc) · 854 Bytes
/
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
/*
# =================================================
# functions.php
#
# Theme functions
# =================================================
*/
/*=================================
= Constants =
=================================*/
define ('THEMEROOT', get_stylesheet_directory_uri());
/*==============================================
= Theme styles & scripts =
==============================================*/
if (! function_exists('nd_scripts')){
function nd_scripts(){
// Javascript
wp_register_script( 'scripts', THEMEROOT . '/dist/script.min.js', array('jquery'), false, true );
wp_enqueue_script( 'scripts' );
// Stylesheets
wp_enqueue_style('fira-sans', 'https://fonts.googleapis.com/css?family=Fira+Sans:400,500');
}
add_action('wp_enqueue_scripts', 'nd_scripts');
}
?>