-
Notifications
You must be signed in to change notification settings - Fork 1
/
functions.php
465 lines (367 loc) · 20.3 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
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
464
465
<?php
// Theme setup
add_action( 'after_setup_theme', 'hemingway_setup' );
function hemingway_setup() {
// Automatic feed
add_theme_support( 'automatic-feed-links' );
// Custom background
add_theme_support( 'custom-background' );
// Post thumbnails
add_theme_support( 'post-thumbnails' );
add_image_size( 'post-image', 676, 9999 );
// Post formats
add_theme_support( 'post-formats', array( 'video', 'aside', 'quote' ) );
// Custom header
$args = array(
'width' => 1280,
'height' => 416,
'default-image' => get_template_directory_uri() . '/images/header.jpg',
'uploads' => true,
'header-text' => false
);
add_theme_support( 'custom-header', $args );
// Title tag
add_theme_support( 'title-tag' );
// Add nav menu
register_nav_menu( 'primary', 'Primary Menu' );
// Make the theme translation ready
load_theme_textdomain('hemingway', get_template_directory() . '/languages');
$locale = get_locale();
$locale_file = get_template_directory() . "/languages/$locale.php";
if ( is_readable($locale_file) )
require_once($locale_file);
}
// Enqueue Javascript files
function hemingway_load_javascript_files() {
if ( !is_admin() ) {
wp_enqueue_script( 'hemingway_global', get_template_directory_uri().'/js/global.js', array('jquery'), '', true );
if ( is_singular() ) wp_enqueue_script( "comment-reply" );
}
}
add_action( 'wp_enqueue_scripts', 'hemingway_load_javascript_files' );
// Enqueue styles
function hemingway_load_style() {
if ( !is_admin() ) {
wp_enqueue_style( 'hemingway_googleFonts', '//fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic|Raleway:700,400' );
wp_enqueue_style( 'hemingway_style', get_stylesheet_uri() );
wp_enqueue_style( 'LCM_social_fonts', get_styleLCM_uri() );
}
}
add_action('wp_print_styles', 'hemingway_load_style');
// Add editor styles
function hemingway_add_editor_styles() {
add_editor_style( 'hemingway-editor-style.css' );
$font_url = '//fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic|Raleway:700,400';
add_editor_style( str_replace( ',', '%2C', $font_url ) );
}
add_action( 'init', 'hemingway_add_editor_styles' );
// Add footer widget areas
add_action( 'widgets_init', 'hemingway_sidebar_reg' );
function hemingway_sidebar_reg() {
register_sidebar(array(
'name' => __( 'Footer A', 'hemingway' ),
'id' => 'footer-a',
'description' => __( 'Widgets in this area will be shown in the left column in the footer.', 'hemingway' ),
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
'before_widget' => '<div class="widget %2$s"><div class="widget-content">',
'after_widget' => '</div><div class="clear"></div></div>'
));
register_sidebar(array(
'name' => __( 'Footer B', 'hemingway' ),
'id' => 'footer-b',
'description' => __( 'Widgets in this area will be shown in the middle column in the footer.', 'hemingway' ),
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
'before_widget' => '<div class="widget %2$s"><div class="widget-content">',
'after_widget' => '</div><div class="clear"></div></div>'
));
register_sidebar(array(
'name' => __( 'Footer C', 'hemingway' ),
'id' => 'footer-c',
'description' => __( 'Widgets in this area will be shown in the right column in the footer.', 'hemingway' ),
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
'before_widget' => '<div class="widget %2$s"><div class="widget-content">',
'after_widget' => '</div><div class="clear"></div></div>'
));
register_sidebar(array(
'name' => __( 'Sidebar', 'hemingway' ),
'id' => 'sidebar',
'description' => __( 'Widgets in this area will be shown in the sidebar.', 'hemingway' ),
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
'before_widget' => '<div class="widget %2$s"><div class="widget-content">',
'after_widget' => '</div><div class="clear"></div></div>'
));
}
// Add theme widgets
require_once (get_template_directory() . "/widgets/dribbble-widget.php");
require_once (get_template_directory() . "/widgets/flickr-widget.php");
require_once (get_template_directory() . "/widgets/video-widget.php");
require_once (get_template_directory() . "/widgets/social-widget.php");
// Set content-width
if ( ! isset( $content_width ) ) $content_width = 676;
// Add classes to next_posts_link and previous_posts_link
add_filter('next_posts_link_attributes', 'hemingway_posts_link_attributes_1');
add_filter('previous_posts_link_attributes', 'hemingway_posts_link_attributes_2');
function hemingway_posts_link_attributes_1() {
return 'class="post-nav-older"';
}
function hemingway_posts_link_attributes_2() {
return 'class="post-nav-newer"';
}
// Menu walker adding "has-children" class to menu li's with children menu items
class hemingway_nav_walker extends Walker_Nav_Menu {
function display_element( $element, &$children_elements, $max_depth, $depth=0, $args, &$output ) {
$id_field = $this->db_fields['id'];
if ( !empty( $children_elements[ $element->$id_field ] ) ) {
$element->classes[] = 'has-children';
}
Walker_Nav_Menu::display_element( $element, $children_elements, $max_depth, $depth, $args, $output );
}
}
// Add class to body if the post/page has a featured image
add_action('body_class', 'hemingway_if_featured_image_class' );
function hemingway_if_featured_image_class($classes) {
global $post;
if ( isset( $post ) && has_post_thumbnail() ) {
$classes[] = 'has-featured-image';
}
return $classes;
}
// Custom more-link text
add_filter( 'the_content_more_link', 'hemingway_custom_more_link', 10, 2 );
function hemingway_custom_more_link( $more_link, $more_link_text ) {
return str_replace( $more_link_text, __('Continue reading', 'hemingway'), $more_link );
}
// Style the admin area
function hemingway_custom_colors() {
echo '<style type="text/css">
#postimagediv #set-post-thumbnail img {
max-width: 100%;
height: auto;
}
</style>';
}
add_action('admin_head', 'hemingway_custom_colors');
// hemingway comment function
if ( ! function_exists( 'hemingway_comment' ) ) :
function hemingway_comment( $comment, $args, $depth ) {
$GLOBALS['comment'] = $comment;
switch ( $comment->comment_type ) :
case 'pingback' :
case 'trackback' :
?>
<li <?php comment_class(); ?> id="comment-<?php comment_ID(); ?>">
<?php __( 'Pingback:', 'hemingway' ); ?> <?php comment_author_link(); ?> <?php edit_comment_link( __( '(Edit)', 'hemingway' ), '<span class="edit-link">', '</span>' ); ?>
</li>
<?php
break;
default :
global $post;
?>
<li <?php comment_class(); ?> id="li-comment-<?php comment_ID(); ?>">
<div id="comment-<?php comment_ID(); ?>" class="comment">
<div class="comment-meta comment-author vcard">
<?php echo get_avatar( $comment, 120 ); ?>
<div class="comment-meta-content">
<?php printf( '<cite class="fn">%1$s %2$s</cite>',
get_comment_author_link(),
( $comment->user_id === $post->post_author ) ? '<span class="post-author"> ' . __( '(Post author)', 'hemingway' ) . '</span>' : ''
); ?>
<p><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID ) ) ?>"><?php echo get_comment_date() . ' at ' . get_comment_time() ?></a></p>
</div> <!-- /comment-meta-content -->
</div> <!-- /comment-meta -->
<div class="comment-content post-content">
<?php if ( '0' == $comment->comment_approved ) : ?>
<p class="comment-awaiting-moderation"><?php _e( 'Awaiting moderation', 'hemingway' ); ?></p>
<?php endif; ?>
<?php comment_text(); ?>
<div class="comment-actions">
<?php edit_comment_link( __( 'Edit', 'hemingway' ), '', '' ); ?>
<?php comment_reply_link( array_merge( $args, array( 'reply_text' => __( 'Reply', 'hemingway' ), 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?>
<div class="clear"></div>
</div> <!-- /comment-actions -->
</div><!-- /comment-content -->
</div><!-- /comment-## -->
<?php
break;
endswitch;
}
endif;
// Hemingway theme options
class Hemingway_Customize {
public static function register ( $wp_customize ) {
//1. Define a new section (if desired) to the Theme Customizer
$wp_customize->add_section( 'hemingway_options',
array(
'title' => __( 'Hemingway Options', 'hemingway' ), //Visible title of section
'priority' => 35, //Determines what order this appears in
'capability' => 'edit_theme_options', //Capability needed to tweak
'description' => __('Allows you to customize some settings for Hemingway.', 'hemingway'), //Descriptive tooltip
)
);
$wp_customize->add_section( 'hemingway_logo_section' , array(
'title' => __( 'Logo', 'hemingway' ),
'priority' => 40,
'description' => __('Upload a logo to replace the default site name and description in the header','hemingway'),
) );
//2. Register new settings to the WP database...
$wp_customize->add_setting( 'accent_color', //No need to use a SERIALIZED name, as `theme_mod` settings already live under one db record
array(
'default' => '#1abc9c', //Default setting/value to save
'type' => 'theme_mod', //Is this an 'option' or a 'theme_mod'?
'capability' => 'edit_theme_options', //Optional. Special permissions for accessing this setting.
'transport' => 'postMessage', //What triggers a refresh of the setting? 'refresh' or 'postMessage' (instant)?
'sanitize_callback' => 'sanitize_hex_color'
)
);
// Add logo setting and sanitize it
$wp_customize->add_setting( 'hemingway_logo',
array(
'sanitize_callback' => 'esc_url_raw'
)
);
//3. Finally, we define the control itself (which links a setting to a section and renders the HTML controls)...
$wp_customize->add_control( new WP_Customize_Color_Control( //Instantiate the color control class
$wp_customize, //Pass the $wp_customize object (required)
'hemingway_accent_color', //Set a unique ID for the control
array(
'label' => __( 'Accent Color', 'hemingway' ), //Admin-visible name of the control
'section' => 'colors', //ID of the section this control should render in (can be one of yours, or a WordPress default section)
'settings' => 'accent_color', //Which setting to load and manipulate (serialized is okay)
'priority' => 10, //Determines the order this control appears in for the specified section
)
) );
$wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'hemingway_logo', array(
'label' => __( 'Logo', 'hemingway' ),
'section' => 'hemingway_logo_section',
'settings' => 'hemingway_logo',
) ) );
//4. We can also change built-in settings by modifying properties. For instance, let's make some stuff use live preview JS...
$wp_customize->get_setting( 'blogname' )->transport = 'postMessage';
$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
}
public static function header_output() {
?>
<!--Customizer CSS-->
<style type="text/css">
<?php self::generate_css('body::selection', 'background', 'accent_color'); ?>
<?php self::generate_css('body a', 'color', 'accent_color'); ?>
<?php self::generate_css('body a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.blog-title a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.blog-menu a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.blog-search #searchsubmit', 'background-color', 'accent_color'); ?>
<?php self::generate_css('.blog-search #searchsubmit', 'border-color', 'accent_color'); ?>
<?php self::generate_css('.blog-search #searchsubmit:hover', 'background-color', 'accent_color'); ?>
<?php self::generate_css('.blog-search #searchsubmit:hover', 'border-color', 'accent_color'); ?>
<?php self::generate_css('.featured-media .sticky-post', 'background-color', 'accent_color'); ?>
<?php self::generate_css('.post-title a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.post-meta a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.post-content a', 'color', 'accent_color'); ?>
<?php self::generate_css('.post-content a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.blog .format-quote blockquote cite a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.post-content a.more-link:hover', 'background-color', 'accent_color'); ?>
<?php self::generate_css('.post-content input[type="submit"]:hover', 'background-color', 'accent_color'); ?>
<?php self::generate_css('.post-content input[type="reset"]:hover', 'background-color', 'accent_color'); ?>
<?php self::generate_css('.post-content input[type="button"]:hover', 'background-color', 'accent_color'); ?>
<?php self::generate_css('.post-content fieldset legend', 'background-color', 'accent_color'); ?>
<?php self::generate_css('.post-content .searchform #searchsubmit', 'background', 'accent_color'); ?>
<?php self::generate_css('.post-content .searchform #searchsubmit', 'border-color', 'accent_color'); ?>
<?php self::generate_css('.post-content .searchform #searchsubmit:hover', 'background', 'accent_color'); ?>
<?php self::generate_css('.post-content .searchform #searchsubmit:hover', 'border-color', 'accent_color'); ?>
<?php self::generate_css('.post-categories a', 'color', 'accent_color'); ?>
<?php self::generate_css('.post-categories a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.post-tags a:hover', 'background', 'accent_color'); ?>
<?php self::generate_css('.post-tags a:hover:after', 'border-right-color', 'accent_color'); ?>
<?php self::generate_css('.post-nav a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.archive-nav a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.logged-in-as a', 'color', 'accent_color'); ?>
<?php self::generate_css('.logged-in-as a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.content #respond input[type="submit"]:hover', 'background-color', 'accent_color'); ?>
<?php self::generate_css('.comment-meta-content cite a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.comment-meta-content p a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.comment-actions a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('#cancel-comment-reply-link', 'color', 'accent_color'); ?>
<?php self::generate_css('#cancel-comment-reply-link:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.comment-nav-below a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.widget-title a', 'color', 'accent_color'); ?>
<?php self::generate_css('.widget-title a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.widget_text a', 'color', 'accent_color'); ?>
<?php self::generate_css('.widget_text a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.widget_rss a', 'color', 'accent_color'); ?>
<?php self::generate_css('.widget_rss a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.widget_archive a', 'color', 'accent_color'); ?>
<?php self::generate_css('.widget_archive a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.widget_meta a', 'color', 'accent_color'); ?>
<?php self::generate_css('.widget_meta a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.widget_recent_comments a', 'color', 'accent_color'); ?>
<?php self::generate_css('.widget_recent_comments a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.widget_pages a', 'color', 'accent_color'); ?>
<?php self::generate_css('.widget_pages a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.widget_links a', 'color', 'accent_color'); ?>
<?php self::generate_css('.widget_links a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.widget_recent_entries a', 'color', 'accent_color'); ?>
<?php self::generate_css('.widget_recent_entries a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.widget_categories a', 'color', 'accent_color'); ?>
<?php self::generate_css('.widget_categories a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.widget_search #searchsubmit', 'background', 'accent_color'); ?>
<?php self::generate_css('.widget_search #searchsubmit', 'border-color', 'accent_color'); ?>
<?php self::generate_css('.widget_search #searchsubmit:hover', 'background', 'accent_color'); ?>
<?php self::generate_css('.widget_search #searchsubmit:hover', 'border-color', 'accent_color'); ?>
<?php self::generate_css('#wp-calendar a', 'color', 'accent_color'); ?>
<?php self::generate_css('#wp-calendar a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('#wp-calendar tfoot a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.dribbble-shot:hover', 'background', 'accent_color'); ?>
<?php self::generate_css('.widgetmore a', 'color', 'accent_color'); ?>
<?php self::generate_css('.widgetmore a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('.flickr_badge_image a:hover img', 'background', 'accent_color'); ?>
<?php self::generate_css('.footer .flickr_badge_image a:hover img', 'background', 'accent_color'); ?>
<?php self::generate_css('.footer .dribbble-shot:hover img', 'background', 'accent_color'); ?>
<?php self::generate_css('.sidebar .tagcloud a:hover', 'background', 'accent_color'); ?>
<?php self::generate_css('.footer .tagcloud a:hover', 'background', 'accent_color'); ?>
<?php self::generate_css('.credits a:hover', 'color', 'accent_color'); ?>
<?php self::generate_css('body#tinymce.wp-editor a', 'color', 'accent_color'); ?>
<?php self::generate_css('body#tinymce.wp-editor a:hover', 'color', 'accent_color'); ?>
</style>
<!--/Customizer CSS-->
<?php
}
public static function live_preview() {
wp_enqueue_script(
'hemingway-themecustomizer', // Give the script a unique ID
get_template_directory_uri() . '/js/theme-customizer.js', // Define the path to the JS file
array( 'jquery', 'customize-preview' ), // Define dependencies
'', // Define a version (optional)
true // Specify whether to put in footer (leave this true)
);
}
public static function generate_css( $selector, $style, $mod_name, $prefix='', $postfix='', $echo=true ) {
$return = '';
$mod = get_theme_mod($mod_name);
if ( ! empty( $mod ) ) {
$return = sprintf('%s { %s:%s; }',
$selector,
$style,
$prefix.$mod.$postfix
);
if ( $echo ) {
echo $return;
}
}
return $return;
}
}
// Setup the Theme Customizer settings and controls...
add_action( 'customize_register' , array( 'Hemingway_Customize' , 'register' ) );
// Output custom CSS to live site
add_action( 'wp_head' , array( 'Hemingway_Customize' , 'header_output' ) );
// Enqueue live preview javascript in Theme Customizer admin screen
add_action( 'customize_preview_init' , array( 'Hemingway_Customize' , 'live_preview' ) );
function get_styleLCM_uri() {
$stylesheet_dir_uri = get_stylesheet_directory_uri();
$stylesheet_uri = $stylesheet_dir_uri . '/fontawesome/css/font-awesome.css?ver=4.2.0';
return apply_filters( 'stylesheet_uri', $stylesheet_uri, $stylesheet_dir_uri );
}
?>