-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
62 lines (38 loc) · 1.95 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
function understrap_remove_scripts()
{
wp_dequeue_style('understrap-styles');
wp_deregister_style('understrap-styles');
wp_dequeue_script('understrap-scripts');
wp_deregister_script('understrap-scripts');
// Removes the parent themes stylesheet and scripts from inc/enqueue.php
}
add_action('wp_enqueue_scripts', 'understrap_remove_scripts', 20);
add_action('wp_enqueue_scripts', 'theme_enqueue_styles');
function theme_enqueue_styles()
{
// Get the theme data
$the_theme = wp_get_theme();
wp_enqueue_style('child-understrap-styles', get_stylesheet_directory_uri() . '/css/child-theme.min.css', array(), $the_theme->get('Version'));
wp_enqueue_style('slick-style', get_stylesheet_directory_uri() . '/libs/slick/slick.css', array(), $the_theme->get('Version'));
wp_enqueue_style('slick-theme-style', get_stylesheet_directory_uri() . '/libs/slick/slick-theme.css', array(), $the_theme->get('Version'));
wp_enqueue_script('jquery');
wp_enqueue_script('popper-scripts', get_template_directory_uri() . '/js/popper.min.js', array(), false);
wp_enqueue_script('child-understrap-scripts', get_stylesheet_directory_uri() . '/js/child-theme.min.js', array(), $the_theme->get('Version'), true);
wp_enqueue_script('slick-script', get_stylesheet_directory_uri() . '/libs/slick/slick.min.js', array(), $the_theme->get('Version'), true);
if (is_singular() && comments_open() && get_option('thread_comments')) {
wp_enqueue_script('comment-reply');
}
}
require_once('inc/custom-post-type.php');
require_once('inc/custom-fields.php');
require_once('inc/setup.php');
require_once('inc/customizer.php');
require_once('inc/taxomony.php');
require_once('inc/remove_widgets.php');
require_once('inc/widgets.php');
require_once('inc/tag_cloud.php');
require_once('inc/custom-comments.php');
require_once('inc/comments-function.php');
require_once('inc/pagination.php');
add_post_type_support( 'projects', 'excerpt' );