-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfunctions.php
41 lines (33 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
40
41
<?php
// Stormbringer initialization
require_once locate_template('/inc/init.php');
// ********************************************
// Configuration
// ********************************************
if ( ! isset( $content_width ) )
$content_width = 940; // Content width, in pixels
// ********************************************
// Libraries
// ********************************************
add_theme_support('libraries',
array(
'html5shiv' => '3.7.3',
'respond' => '1.4.2',
'lessjs' => '2.7.1',
'selectivizr' => '1.0.2',
'animatecss' => '3.5.2',
'bootstrap' => '3.3.6',
'bootstrap-select' => '1.10.0',
'bootstrap-datepicker' => '1.6.4',
'jquery' => '1.12.4',
'jquery-cycle' => '3.03',
'jquery-easing' => '1.3',
'jquery-mousewheel' => '3.1.12',
'jquery-validate' => '1.15.0',
'jquery-cookie' => '1.4.1',
'jquery-lazyload' => '1.9.1',
'jquery-waypoints' => '4.0.0',
'jquery-touchswipe' => '1.6.18',
'jquery-owlcarousel' => '2.1.6',
)
);