-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
170 lines (138 loc) · 4.01 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<?php
/**
* Gently functions and definitions.
*
* @package Gently
*/
if ( ! function_exists( 'gently_setup' ) ) :
/**
* Sets up theme defaults and registers support for various WordPress features.
*/
function gently_setup() {
/*
* Make theme available for translation.
* Translations can be filed in the /languages/ directory.
*/
load_theme_textdomain( 'gently', get_template_directory() . '/languages' );
/**
* Add default posts and comments RSS feed links to head.
*/
add_theme_support( 'automatic-feed-links' );
/*
* Let WordPress manage the document title.
*/
add_theme_support( 'title-tag' );
/*
* Enable support for Post Thumbnails on posts and pages.
*/
add_theme_support( 'post-thumbnails' );
/**
* Register two navigation menus.
*/
register_nav_menus( array(
'primary' => esc_html__( 'Primary Navigation', 'gently' ),
'secondary' => esc_html__( 'Secondary Navigation', 'gently' )
) );
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
) );
/*
* Set content width if it's not set already
*/
if ( ! isset( $content_width ) ) {
$content_width = 700;
}
// Set up the WordPress core custom background feature.
add_theme_support( 'custom-background', apply_filters( 'gently_custom_background_args', array(
'default-color' => 'ffffff',
'default-image' => '',
) ) );
add_theme_support( 'custom-header', array(
'default-image' => '',
'width' => 1920,
'height' => 500,
) );
}
endif; // gently_setup
add_action( 'after_setup_theme', 'gently_setup' );
/**
* Set the content width in pixels, based on the theme's design and stylesheet.
*
* Priority 0 to make it available to lower priority callbacks.
*
* @global int $content_width
*/
function gently_content_width() {
$GLOBALS['content_width'] = apply_filters( 'gently_content_width', 700 );
}
add_action( 'after_setup_theme', 'gently_content_width', 0 );
/**
* Register widget area.
*/
function gently_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Sidebar', 'gently' ),
'id' => 'sidebar-1',
'description' => '',
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
}
add_action( 'widgets_init', 'gently_widgets_init' );
/**
* Enqueue scripts and styles.
*/
function gently_scripts() {
wp_enqueue_style( 'gently-style', get_template_directory_uri() . '/css/style.min.css' );
wp_enqueue_script( 'gently-app', get_template_directory_uri() . '/js/app.min.js', array( 'jquery' ), '', true );
wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/vendor/font-awesome.min.css' );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'gently_scripts' );
/**
* Add editor stylesheet
*/
function gently_add_editor_styles() {
add_editor_style( get_template_directory_uri() . '/css/custom-editor-style.css' );
}
add_action( 'admin_init', 'gently_add_editor_styles' );
/**
* TGM Plugin Activation class
*/
require get_template_directory() . '/inc/class-tgm-plugin-activation.php';
/**
* TGM Plugin Activation config
*/
require get_template_directory() . '/inc/tgm-plugin-activation.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Custom functions that act independently of the theme templates.
*/
require get_template_directory() . '/inc/extras.php';
/**
* Generating dynamic sytles.
*/
require get_template_directory() . '/inc/dynamic-styles.php';
/**
* Share buttons.
*/
require get_template_directory() . '/inc/social-media.php';