-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
358 lines (277 loc) · 10.4 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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
<?php
/*--- Basic setup function ---*/
function gohost_setup() {
//Register a theme image size.
add_theme_support( 'post-thumbnails' );
add_image_size( 'gohost-large-thumb', 830 );
add_image_size( 'gohost-medium-thumb', 550, 400, true );
add_image_size( 'gohost-small-thumb', 230 );
//Register nav menu used in theme.
register_nav_menus( array(
'primary' => __( 'Primary Menu', 'gohost' )
) );
//Enable support for Post Formats.
add_theme_support( 'post-formats', array(
'aside',
'image',
'video',
'quote',
'link',
) );
//Add default posts and comments RSS feed links to head.
add_theme_support( 'automatic-feed-links' );
/*
* Let WordPress manage the document title.
* By adding theme support, we declare that this theme does not use a
* hard-coded <title> tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( 'title-tag' );
//Theme support for custom background feature.
$args = array(
'default-color' => 'ffffff',
'default-image' => '',
);
add_theme_support( 'custom-background', $args );
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support( 'html5', array(
'comment-form',
'comment-list',
'gallery',
'caption',
) );
// Add theme support for Custom Logo.
add_theme_support( 'custom-logo', array(
'width' => 250,
'height' => 250,
'flex-width' => true,
) );
}
add_action( 'after_setup_theme', 'gohost_setup' );
/*--- Theme preloader ---*/
function gohost_preloader() {
?>
<div class="preloader">
<div class="spinner">
<div class="pre-bounce1"></div>
<div class="pre-bounce2"></div>
</div>
</div>
<?php
}
add_action('gohost_before_site', 'gohost_preloader');
/*--- Blog layout ---*/
function theme_blog_layout() {
$layout = get_theme_mod( 'theme_blog_type' , 'special' );
return $layout;
}
/*--- Show meta info for the post ---*/
function gohost_posted_on() {
$layout = theme_blog_layout();
$time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
$time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time><time class="updated" datetime="%3$s">%4$s</time>';
}
$time_string = sprintf( $time_string,
esc_attr( get_the_date( 'c' ) ),
esc_html( get_the_date() ),
esc_attr( get_the_modified_date( 'c' ) ),
esc_html( get_the_modified_date() )
);
$posted_on = sprintf(
_x( '%s', 'post date', 'gohost' ),
'<i class="fa fa-calendar"></i><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . $time_string . '</a>'
);
$byline = sprintf(
_x( '%s', 'post author', 'gohost' ),
'<i class="fa fa-user"></i><span class="author vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '">' . esc_html( get_the_author() ) . '</a></span>'
);
$tags = get_the_tags();
$singletag = '';
$tagsline = '';
if( $tags) :
foreach( $tags as $tag ){
$singletag .= '<a href="' . esc_url( get_tag_link( $tag->term_id ) ) . '">'. esc_html( $tag->name ) .'</a>';
}
$tagsline = '<span class="tags"><i class="fa fa-tag"></i><span class="blog-category-url">'.$singletag .'</span></span>';
endif;
$category = get_the_category();
$singlecategory = '';
$categoryline = '';
$comments = '';
if($category) :
foreach( $category as $cat ){
$singlecategory .= '<a href="' . esc_url( get_tag_link( $cat->term_id ) ) . '">'. esc_html( $cat->name ) .'</a>';
}
$categoryline = '<span class="blog-category"><i class="fa fa-list"></i><span class="blog-category-url">' . $singlecategory . '</span></span>';
endif;
if($layout == 'special'){
$comments = '<i class="fa fa-commenting"></i><span class="comment-count"><a href="' . esc_url( get_permalink() ) . '">' . esc_html(get_comments_number()) . ' comments</a></span>';
}
echo '<span class="posted-on">' . $posted_on . '</span><span class="byline"> ' . $byline . '</span>' . $comments . $categoryline . $tagsline;
}
/*--- Changing excerpt more text ---*/
function gohost_excerpt_more($more) {
global $post;
$layout = theme_blog_layout();
return ' .... <a class=" '.$layout.'" href="'. get_permalink($post->ID) . '">' . __('Read More', 'gohost') . '</a>';
}
add_filter('excerpt_more', 'gohost_excerpt_more');
/*--- Enqueue scripts and styles ---*/
function gohost_scripts() {
//wp_enqueue_style( 'owl.carousel', get_template_directory_uri() . '/css/owl.carousel.css' );
//wp_enqueue_style( 'owl.theme', get_template_directory_uri() . '/css/owl.theme.css' );
wp_enqueue_style( 'customizer-style', get_stylesheet_uri() );
wp_enqueue_style( 'style', get_template_directory_uri() . '/css/style.css' );
wp_enqueue_script( 'gohost-common', get_template_directory_uri() . '/js/common.js', array('jquery'), '20180213', true );
//wp_enqueue_script( 'owl.carousel.min', get_template_directory_uri() . '/js/owl.carousel.min.js', array('jquery'), '20180213', true );
wp_enqueue_script( 'wow.min', get_template_directory_uri() . '/js/wow/wow.min.js', array('jquery'), '20180213', true );
wp_enqueue_style( 'gohost-font-awesome', get_template_directory_uri() . '/fonts/font-awesome.min.css' );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
/* wp_enqueue_style( 'gohost-bootstrap', get_template_directory_uri() . '/css/bootstrap/bootstrap.min.css', array(), true ); */
}
add_action( 'wp_enqueue_scripts', 'gohost_scripts' );
/**
* Enqueue Bootstrap
*/
function gohost_enqueue_bootstrap() {
wp_enqueue_style( 'gohost-bootstrap', get_template_directory_uri() . '/css/bootstrap/bootstrap.min.css', array(), true );
}
add_action( 'wp_enqueue_scripts', 'gohost_enqueue_bootstrap', 9 );
/*--- Register widget area ---*/
add_action( 'widgets_init', 'gohost_widgets_init' );
function gohost_widgets_init() {
register_sidebar( array(
'name' => __( 'Main Sidebar', 'gohost' ),
'id' => 'sidebar-1',
'description' => __( 'Widgets in this area will be shown on all posts and pages.', 'theme-slug' ),
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>',
) );
for ($i=1; $i<=3; $i++){
register_sidebar( array(
'name' => __( 'Footer-widget-area-', 'gohost' ) . $i,
'id' => 'footer-widget-area' . $i,
'description' => __( 'Widgets in this area will be shown on footer.', 'theme-slug' ),
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h3 class="widgettitle">',
'after_title' => '</h3>',
) );
}
}
function gohost_edit_link() {
edit_post_link(
sprintf( __( '<i class="fa fa-edit"></i>Edit<span class="screen-reader-text"> "%s"</span>', 'gohost' ), get_the_title() ),
'<span class="edit-link">',
'</span>'
);
}
/*--- Generate breadcrumbs ---*/
function gohost_get_breadcrumb() {
echo '<a href="'.home_url().'" rel="nofollow">'.__('Home', 'gohost').'</a>';
if ( is_category() || is_single() ) {
echo " / ";
the_category(' • ');
if (is_single()) {
echo " / ";
the_title();
}
} elseif ( is_page() ) {
echo " / ";
echo the_title();
} elseif ( is_search() ) {
echo __(" / Search Results for... ", "gohost");
echo '"<em>';
echo the_search_query();
echo '</em>"';
}
}
/*--- Convert hex color with or without hash into rgb with alpha ---*/
function twx_hex2rgba( $hex_color, $alpha = 1 ) {
$values = str_replace( '#', '', $hex_color );
switch( strlen( $values ) ){
case 3:
list( $r, $g, $b ) = sscanf( $values, '%1s%1s%1s' );
$rgba = 'rgba(' . hexdec( '$r$r' ) . ', ' . hexdec( '$g$g' ) . ', ' . hexdec( '$b$b' ) . ', ' . $alpha . ')';
break;
case 6:
$rgb = array_map('hexdec', sscanf( $values, '%2s%2s%2s' ));
$rgba = 'rgba(' . implode( ",", $rgb ) . ',' . $alpha . ')';
break;
default:
$rgba = false;
}
return $rgba;
}
function is_blog () {
return ( is_archive() || is_author() || is_category() || is_home() || is_single() || is_tag()) && 'post' == get_post_type();
}
/**
* Custom-Header
*/
require get_template_directory() . '/includes/custom-header.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/includes/customizer.php';
/**
* Banner background
*/
require get_template_directory() . '/includes/banner-background.php';
/**
* Styles
*/
require get_template_directory() . '/includes/customizer-styles.php';
/**
* Recommended plugins
*/
require get_template_directory() . '/recommend/class-tgm-plugin-activation.php';
/**
* Upsell
*/
require get_template_directory() . '/upsell/class-customize.php';
/**
* Demo content
*/
require_once dirname( __FILE__ ) . '/dummy-data/dummy-data-setup.php';
/*--- Notice for recommended plugins ---*/
function gohost_recommended_plugin() {
$plugins[] = array(
'name' => 'Pagelayer',
'slug' => 'pagelayer',
'required' => false,
);
$plugins[] = array(
'name' => 'Contact Form 7',
'slug' => 'contact-form-7',
'required' => false,
);
tgmpa( $plugins);
}
add_action( 'tgmpa_register', 'gohost_recommended_plugin');
// Update the theme
require_once dirname( __FILE__ ) . '/includes/popularfx.php';
// Enable update check on every request. Normally you don't need this! This is for testing only!
//set_site_transient('update_themes', null);
add_filter( 'pre_set_site_transient_update_themes', 'gohost_check_for_update' );
function gohost_check_for_update( $checked_data ){
return popularfx_check_for_update(popularfx_get_current_theme_slug(__FILE__), $checked_data);
}
// Show the theme promo
popularfx_maybe_promo([
'after' => 2,// In days
'interval' => 30,// In days
'pro_url' => 'https://popularfx.com/themes/wordpress/corporate/Gohost_Pro',
'rating' => 'https://popularfx.com/themes/wordpress/corporate/Gohost',
'twitter' => 'https://twitter.com/theme_worx?status='.rawurlencode('I love #Gohost theme by @theme_worx for my #WordPress site - '.home_url()),
'facebook' => 'https://www.facebook.com/themeworxofficial',
'website' => 'http://themeworx.net',
]);