-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
261 lines (225 loc) · 8.8 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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
<?php
/**
* Makeup Lite functions and definitions
*
* @package Makeup Lite
*/
/**
* Set the content width based on the theme's design and stylesheet.
*/
if ( ! function_exists( 'makeup_lite_setup' ) ) :
/**
* Sets up theme defaults and registers support for various WordPress features.
*
* Note that this function is hooked into the after_setup_theme hook, which runs
* before the init hook. The init hook is too late for some features, such as indicating
* support post thumbnails.
*/
function makeup_lite_setup() {
$GLOBALS['content_width'] = apply_filters( 'makeup_lite_content_width', 680 );
load_theme_textdomain( 'makeup-lite', get_template_directory() . '/languages' );
add_theme_support( 'automatic-feed-links' );
add_theme_support('html5');
add_theme_support( 'title-tag' );
add_theme_support( 'post-thumbnails' );
add_theme_support( 'custom-logo', array(
'height' => 50,
'width' => 150,
'flex-height' => true,
) );
add_theme_support( 'custom-background', array(
'default-color' => 'ffffff'
) );
register_nav_menus( array(
'primary' => __( 'Primary Menu', 'makeup-lite' ),
'footer' => __( 'Footer Menu', 'makeup-lite' ),
) );
add_editor_style( 'editor-style.css' );
}
endif; // makeup_lite_setup
add_action( 'after_setup_theme', 'makeup_lite_setup' );
function makeup_lite_widgets_init() {
register_sidebar( array(
'name' => __( 'Blog Sidebar', 'makeup-lite' ),
'description' => __( 'Appears on blog page sidebar', 'makeup-lite' ),
'id' => 'sidebar-1',
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 1', 'makeup-lite' ),
'description' => __( 'Appears on footer', 'makeup-lite' ),
'id' => 'footer-widget-column-1',
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<h5>',
'after_title' => '</h5>',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 2', 'makeup-lite' ),
'description' => __( 'Appears on footer', 'makeup-lite' ),
'id' => 'footer-widget-column-2',
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<h5>',
'after_title' => '</h5>',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 3', 'makeup-lite' ),
'description' => __( 'Appears on footer', 'makeup-lite' ),
'id' => 'footer-widget-column-3',
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<h5>',
'after_title' => '</h5>',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 4', 'makeup-lite' ),
'description' => __( 'Appears on footer', 'makeup-lite' ),
'id' => 'footer-widget-column-4',
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<h5>',
'after_title' => '</h5>',
) );
}
add_action( 'widgets_init', 'makeup_lite_widgets_init' );
function makeup_lite_font_url(){
$font_url = '';
/* Translators: If there are any character that are not
* supported by Assistant, trsnalate this to off, do not
* translate into your own language.
*/
$assistant = _x('on','Assistant:on or off','makeup-lite');
/* Translators: If there are any character that are not
* supported by Big Shoulders Text, trsnalate this to off, do not
* translate into your own language.
*/
$bigshoulderstext = _x('on','Big Shoulders Text:on or off','makeup-lite');
if('off' !== $assistant || 'off' !== $bigshoulderstext ){
$font_family = array();
if('off' !== $assistant){
$font_family[] = 'Assistant:300,400,600,800';
}
if('off' !== $bigshoulderstext){
$font_family[] = 'Big Shoulders Text:400,700,900';
}
$query_args = array(
'family' => urlencode(implode('|',$font_family)),
);
$font_url = add_query_arg($query_args,'//fonts.googleapis.com/css');
}
return $font_url;
}
function makeup_lite_scripts() {
wp_enqueue_style('makeup-lite-font', makeup_lite_font_url(), array());
wp_enqueue_style( 'makeup-lite-basic-style', get_stylesheet_uri() );
wp_enqueue_style( 'nivo-slider', get_template_directory_uri()."/css/nivo-slider.css" );
wp_enqueue_style( 'fontawesome-all-style', get_template_directory_uri().'/fontsawesome/css/fontawesome-all.css' );
wp_enqueue_style( 'makeup-lite-responsive', get_template_directory_uri()."/css/responsive.css" );
wp_enqueue_style( 'dashicons', get_theme_file_uri() . '/css/dashicons.css', array(), '20200422' );
wp_enqueue_script( 'jquery-nivo-slider', get_template_directory_uri() . '/js/jquery.nivo.slider.js', array('jquery') );
wp_enqueue_script( 'makeup-lite-editable', get_template_directory_uri() . '/js/editable.js' );
wp_enqueue_script( 'makeup-lite', get_template_directory_uri() . '/js/navigation.js', array(), '01062020', true );
wp_localize_script( 'makeup-lite', 'makeupliteScreenReaderText', array(
'expandMain' => __( 'Open the main menu', 'makeup-lite' ),
'collapseMain' => __( 'Close the main menu', 'makeup-lite' ),
'expandChild' => __( 'expand submenu', 'makeup-lite' ),
'collapseChild' => __( 'collapse submenu', 'makeup-lite' ),
) );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
}
add_action( 'wp_enqueue_scripts', 'makeup_lite_scripts' );
function makeup_lite_ie_stylesheet(){
// Load the Internet Explorer specific stylesheet.
wp_enqueue_style('makeup-lite-ie', get_template_directory_uri().'/css/ie.css', array( 'makeup-lite-style' ), '20190312' );
wp_style_add_data('makeup-lite-ie','conditional','lt IE 10');
// Load the Internet Explorer 8 specific stylesheet.
wp_enqueue_style( 'makeup-lite-ie8', get_template_directory_uri() . '/css/ie8.css', array( 'makeup-lite-style' ), '20190312' );
wp_style_add_data( 'makeup-lite-ie8', 'conditional', 'lt IE 9' );
// Load the Internet Explorer 7 specific stylesheet.
wp_enqueue_style( 'makeup-lite-ie7', get_template_directory_uri() . '/css/ie7.css', array( 'makeup-lite-style' ), '20190312' );
wp_style_add_data( 'makeup-lite-ie7', 'conditional', 'lt IE 8' );
}
add_action('wp_enqueue_scripts','makeup_lite_ie_stylesheet');
if ( ! function_exists( 'makeup_lite_the_custom_logo' ) ) :
/**
* Displays the optional custom logo.
*
* Does nothing if the custom logo is not available.
*
*/
function makeup_lite_the_custom_logo() {
if ( function_exists( 'the_custom_logo' ) ) {
the_custom_logo();
}
}
endif;
/**
* Customize Pro included.
*/
require_once get_template_directory() . '/customize-pro/class-customize.php';
/**
* Implement the Custom Header feature.
*/
require get_template_directory() . '/inc/custom-header.php';
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Custom template for about theme.
*/
if ( is_admin() ) {
require get_template_directory() . '/inc/about-themes.php';
}
/**
* Custom functions that act independently of the theme templates.
*/
require get_template_directory() . '/inc/extras.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Load Jetpack compatibility file.
*/
require get_template_directory() . '/inc/jetpack.php';
//Custom Excerpt length.
function makeup_lite_excerpt_length( $length ) {
if ( is_admin() ) return $length;
return 20;
}
add_filter( 'excerpt_length', 'makeup_lite_excerpt_length', 999 );
/**
* WooCommerce Compatibility
*/
add_action( 'after_setup_theme', 'makeup_lite_setup_woocommerce_support' );
function makeup_lite_setup_woocommerce_support()
{
add_theme_support('woocommerce');
add_theme_support( 'wc-product-gallery-zoom' );
add_theme_support( 'wc-product-gallery-lightbox' );
add_theme_support( 'wc-product-gallery-slider' );
}
/**
* Fix skip link focus in IE11.
*
* This does not enqueue the script because it is tiny and because it is only for IE11,
* thus it does not warrant having an entire dedicated blocking script being loaded.
*
* @link https://git.io/vWdr2
*/
function makeup_lite_skip_link_focus_fix() {
// The following is minified via `terser --compress --mangle -- js/skip-link-focus-fix.js`.
?>
<script>
/(trident|msie)/i.test(navigator.userAgent)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",function(){var t,e=location.hash.substring(1);/^[A-z0-9_-]+$/.test(e)&&(t=document.getElementById(e))&&(/^(?:a|select|input|button|textarea)$/i.test(t.tagName)||(t.tabIndex=-1),t.focus())},!1);
</script>
<?php
}
add_action( 'wp_print_footer_scripts', 'makeup_lite_skip_link_focus_fix' );