forked from cyberchimps/Neuro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctions.php
More file actions
executable file
·463 lines (381 loc) · 13.2 KB
/
Copy pathfunctions.php
File metadata and controls
executable file
·463 lines (381 loc) · 13.2 KB
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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
<?php
/**
* Title: Function
*
* Description: Defines theme specific functions including actions and filters.
*
* Please do not edit this file. This file is part of the CyberChimps Framework and all modifications
* should be made in a child theme.
*
* @category CyberChimps Framework
* @package Framework
* @since 1.0
* @author CyberChimps
* @license http://www.opensource.org/licenses/gpl-license.php GPL v3.0 (or later)
* @link http://www.cyberchimps.com/
*/
// Load text domain.
function cyberchimps_text_domain() {
load_theme_textdomain( 'neuro', get_template_directory() . '/inc/languages' );
}
add_action( 'after_setup_theme', 'cyberchimps_text_domain' );
// Load Core
require_once( get_template_directory() . '/cyberchimps/init.php' );
// Set the content width based on the theme's design and stylesheet.
if( !isset( $content_width ) ) {
$content_width = 640;
} /* pixels */
// Define site info
function cyberchimps_add_site_info() {
?>
<p>© Company Name</p>
<?php
}
add_action( 'cyberchimps_site_info', 'cyberchimps_add_site_info' );
if( !function_exists( 'cyberchimps_comment' ) ) :
// Template for comments and pingbacks.
// Used as a callback by wp_list_comments() for displaying the comments.
function cyberchimps_comment( $comment, $args, $depth ) {
$GLOBALS['comment'] = $comment;
switch( $comment->comment_type ) :
case 'pingback' :
case 'trackback' :
?>
<li class="post pingback">
<p><?php _e( 'Pingback:', 'neuro' ); ?> <?php comment_author_link(); ?><?php edit_comment_link( __( '(Edit)', 'neuro' ), ' ' ); ?></p>
<?php
break;
default :
?>
<li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>">
<article id="comment-<?php comment_ID(); ?>" class="comment hreview">
<footer>
<div class="comment-author reviewer vcard">
<?php echo get_avatar( $comment, 40 ); ?>
<?php printf( '%s <span class="says">' . __( 'says:', 'neuro' ) . '</span>', sprintf( '<cite class="fn">%s</cite>', get_comment_author_link() ) ); ?>
</div>
<!-- .comment-author .vcard -->
<?php if( $comment->comment_approved == '0' ) : ?>
<em><?php _e( 'Your comment is awaiting moderation.', 'neuro' ); ?></em>
<br/>
<?php endif; ?>
<div class="comment-meta commentmetadata">
<a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ); ?>" class="dtreviewed">
<time pubdate datetime="<?php comment_time( 'c' ); ?>">
<?php
/* translators: 1: date, 2: time */
printf( __( '%1$s at %2$s', 'neuro' ), get_comment_date(), get_comment_time() ); ?>
</time>
</a>
<?php edit_comment_link( __( '(Edit)', 'neuro' ), ' ' );
?>
</div>
<!-- .comment-meta .commentmetadata -->
</footer>
<div class="comment-content"><?php comment_text(); ?></div>
<div class="reply">
<?php comment_reply_link( array_merge( $args, array( 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
</div>
<!-- .reply -->
</article><!-- #comment-## -->
<?php
break;
endswitch;
}
endif; // ends check for cyberchimps_comment()
// set up next and previous post links for lite themes only
function cyberchimps_next_previous_posts() {
if( get_next_posts_link() || get_previous_posts_link() ): ?>
<div class="more-content">
<div class="row-fluid">
<div class="span6 previous-post">
<?php previous_posts_link(); ?>
</div>
<div class="span6 next-post">
<?php next_posts_link(); ?>
</div>
</div>
</div>
<?php
endif;
}
add_action( 'cyberchimps_after_content', 'cyberchimps_next_previous_posts' );
// core options customization Names and URL's
//Pro or Free
function cyberchimps_theme_check() {
$level = 'free';
return $level;
}
//Theme Name
function cyberchimps_options_theme_name() {
$text = 'Neuro';
return $text;
}
//Theme Pro Name
function cyberchimps_upgrade_bar_pro_title() {
$text = 'Neuro Pro 3';
return $text;
}
//Upgrade link
function cyberchimps_upgrade_bar_pro_link() {
$url = 'http://cyberchimps.com/store/neuro-pro/';
return $url;
}
//Doc's URL
function cyberchimps_options_documentation_url() {
$url = 'http://cyberchimps.com/guides/c-free/';
return $url;
}
// Support Forum URL
function cyberchimps_options_support_forum() {
$url = 'http://cyberchimps.com/forum/free/neuro/';
return $url;
}
add_filter( 'cyberchimps_current_theme_name', 'cyberchimps_options_theme_name', 1 );
add_filter( 'cyberchimps_upgrade_pro_title', 'cyberchimps_upgrade_bar_pro_title' );
add_filter( 'cyberchimps_upgrade_link', 'cyberchimps_upgrade_bar_pro_link' );
add_filter( 'cyberchimps_documentation', 'cyberchimps_options_documentation_url' );
add_filter( 'cyberchimps_support_forum', 'cyberchimps_options_support_forum' );
// Help Section
function cyberchimps_options_help_header() {
$text = 'neuro';
return $text;
}
function cyberchimps_options_help_sub_header() {
$text = __( 'CyberChimps Professional Responsive WordPress Theme', 'neuro' );
return $text;
}
add_filter( 'cyberchimps_help_heading', 'cyberchimps_options_help_header' );
add_filter( 'cyberchimps_help_sub_heading', 'cyberchimps_options_help_sub_header' );
// Branding images and defaults
// Banner default
function cyberchimps_banner_default() {
$url = '/images/branding/banner.jpg';
return $url;
}
add_filter( 'cyberchimps_banner_img', 'cyberchimps_banner_default' );
//theme specific skin options in array. Must always include option default
function cyberchimps_skin_color_options( $options ) {
// Get path of image
$imagepath = get_template_directory_uri() . '/inc/css/skins/images/';
$options = array(
'default' => $imagepath . 'default.png'
);
return $options;
}
add_filter( 'cyberchimps_skin_color', 'cyberchimps_skin_color_options' );
// theme specific background images
function cyberchimps_background_image( $options ) {
$imagepath = get_template_directory_uri() . '/cyberchimps/lib/images/';
$options = array(
'none' => $imagepath . 'backgrounds/thumbs/none.png',
'noise' => $imagepath . 'backgrounds/thumbs/noise.png',
'blue' => $imagepath . 'backgrounds/thumbs/blue.png',
'dark' => $imagepath . 'backgrounds/thumbs/dark.png',
'space' => $imagepath . 'backgrounds/thumbs/space.png'
);
return $options;
}
add_filter( 'cyberchimps_background_image', 'cyberchimps_background_image' );
// theme specific typography options
function cyberchimps_typography_sizes( $sizes ) {
$sizes = array( '8', '9', '10', '12', '14', '16', '20' );
return $sizes;
}
function cyberchimps_typography_faces( $faces ) {
$faces = array(
'Arial, Helvetica, sans-serif' => 'Arial',
'Arial Black, Gadget, sans-serif' => 'Arial Black',
'Comic Sans MS, cursive' => 'Comic Sans MS',
'Courier New, monospace' => 'Courier New',
'Georgia, serif' => 'Georgia',
'Impact, Charcoal, sans-serif' => 'Impact',
'Lucida Console, Monaco, monospace' => 'Lucida Console',
'Lucida Sans Unicode, Lucida Grande, sans-serif' => 'Lucida Sans Unicode',
'Palatino Linotype, Book Antiqua, Palatino, serif' => 'Palatino Linotype',
'Tahoma, Geneva, sans-serif' => 'Tahoma',
'Times New Roman, Times, serif' => 'Times New Roman',
'Trebuchet MS, sans-serif' => 'Trebuchet MS',
'Verdana, Geneva, sans-serif' => 'Verdana',
'Symbol' => 'Symbol',
'Webdings' => 'Webdings',
'Wingdings, Zapf Dingbats' => 'Wingdings',
'MS Sans Serif, Geneva, sans-serif' => 'MS Sans Serif',
'MS Serif, New York, serif' => 'MS Serif',
);
return $faces;
}
function cyberchimps_typography_styles( $styles ) {
$styles = array( 'normal' => 'Normal', 'bold' => 'Bold' );
return $styles;
}
add_filter( 'cyberchimps_typography_sizes', 'cyberchimps_typography_sizes' );
add_filter( 'cyberchimps_typography_faces', 'cyberchimps_typography_faces' );
add_filter( 'cyberchimps_typography_styles', 'cyberchimps_typography_styles' );
/**
* Logo toggle
*
* @return boolean
*/
function cyberchimps_logo_toggle() {
//turn toggle on by default
$toggle = 1;
return $toggle;
}
add_filter( 'cyberchimps_logo_toggle', 'cyberchimps_logo_toggle', 10 );
/**
* Default logo in header
*
* @return url
*/
function cyberchimps_default_logo() {
$url = get_template_directory_uri() . '/images/logo.png';
return $url;
}
add_filter( 'cyberchimps_default_logo', 'cyberchimps_default_logo', 10 );
/**
* Default Slider 1
*
* @return url
*/
function cyberchimps_slide_pro_img1() {
$url = '/images/branding/slide1.jpg';
return $url;
}
add_action( 'cyberchimps_slider_lite_img1', 'cyberchimps_slide_pro_img1', 10 );
/**
* Default Slider 2
*
* @return url
*/
function cyberchimps_slide_pro_img2() {
$url = '/images/branding/defaultslide.jpg';
return $url;
}
add_action( 'cyberchimps_slider_lite_img2', 'cyberchimps_slide_pro_img2', 10 );
/**
* Default Slider 3
*
* @return url
*/
function cyberchimps_slide_pro_img3() {
$url = '/images/branding/defaultslide.jpg';
return $url;
}
add_action( 'cyberchimps_slider_lite_img3', 'cyberchimps_slide_pro_img3', 10 );
/**
* Add font to default fonts
*
* @param array $fonts
*
* @return array
*/
function cyberchimps_typography_faces_include( $fonts ) {
$new_font = array(
'"Open Sans", Helvetica, Arial, "Lucida Grande", sans-serif' => 'Open Sans'
);
$fonts = array_merge( $new_font, $fonts );
return $fonts;
}
add_filter( 'cyberchimps_typography_faces', 'cyberchimps_typography_faces_include', 10, 1 );
/**
* Sets default font settings
*
* @param array null $font
*
* @return array
*/
function cyberchimps_typography_defaults( $font ) {
$font['face'] = '"Open Sans", Helvetica, Arial, "Lucida Grande", sans-serif';
return $font;
}
add_filter( 'cyberchimps_typography_defaults', 'cyberchimps_typography_defaults', 10, 1 );
/**
* Overwrites the core body style functions to place background image in the #sub_body div
*
* @return array
*/
function cyberchimps_css_styles() {
$body_styles = cyberchimps_body_styles();
$link_styles = cyberchimps_link_styles();
$container_styles = cyberchimps_layout_styles();?>
<style type="text/css" media="all">
<?php if ( !empty( $body_styles ) ) : ?>
body {
<?php foreach( $body_styles as $key => $body_style ): ?> <?php echo $key; ?> : <?php echo $body_style; ?>;
<?php endforeach; ?>
}
<?php if( isset( $body_styles['background-image'] ) ): ;?>
#sub_body {
background: <?php echo $body_styles['background-image']; ?>;
}
<?php endif; ?>
<?php endif; ?>
<?php if ( !empty( $link_styles ) ) : ?>
<?php foreach( $link_styles as $key2 => $link_style ): ?>
<?php echo $key2; ?>
{
color:
<?php echo $link_style; ?>
;
}
<?php endforeach; ?>
<?php endif; ?>
<?php if ( !empty( $container_styles ) ) : ?>
.container {
<?php foreach( $container_styles as $key3 => $container_style ): ?> <?php echo $key3; ?> : <?php echo $container_style; ?>px;
<?php endforeach; ?>
}
<?php endif; ?>
</style>
<?php
return;
}
function cyberchimps_neuro_upgrade_bar(){
$upgrade_link = apply_filters( 'cyberchimps_upgrade_link', 'http://cyberchimps.com' );
$pro_title = apply_filters( 'cyberchimps_upgrade_pro_title', 'CyberChimps Pro' );
?>
<br>
<div class="upgrade-callout">
<p><img src="<?php echo get_template_directory_uri(); ?>/cyberchimps/options/lib/images/chimp.png" alt="CyberChimps"/>
<?php printf(
__( 'Welcome to Neuro! Get 30%% off on %1$s using Coupon Code <span style="color:red">NEURO30</span>', 'cyberchimps_core' ),
'<a href="' . $upgrade_link . '" target="_blank" title="' . $pro_title . '">' . $pro_title . '</a> '
); ?>
</p>
<div class="social-container">
<div class="social">
<a href="https://twitter.com/cyberchimps" class="twitter-follow-button" data-show-count="false" data-size="small">Follow @cyberchimps</a>
<script>!function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (!d.getElementById(id)) {
js = d.createElement(s);
js.id = id;
js.src = "//platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
}
}(document, "script", "twitter-wjs");</script>
</div>
<div class="social">
<iframe
src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fcyberchimps.com%2F&send=false&layout=button_count&width=200&show_faces=false&action=like&colorscheme=light&font&height=21"
scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:200px; height:21px;" allowTransparency="true"></iframe>
</div>
</div>
</div>
<?php
}
add_action('admin_init','remove_upgrade_bar');
function remove_upgrade_bar(){
remove_action( 'cyberchimps_options_before_container', 'cyberchimps_upgrade_bar');
}
if( cyberchimps_theme_check() == 'free' ) {
add_action( 'cyberchimps_options_before_container', 'cyberchimps_neuro_upgrade_bar' );
}
// enabling theme support for title tag
function neuro_title_setup()
{
add_theme_support( 'title-tag' );
}
add_action( 'after_setup_theme', 'neuro_title_setup' );
?>