forked from neerav/koster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
190 lines (169 loc) · 6.77 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
<?php
/*----------------------*/
/* Add theme support for post thumbnails, automatic feed links and post formats */
/*----------------------*/
add_theme_support( 'post-thumbnails' );
add_theme_support( 'automatic-feed-links' );
add_theme_support( 'post-formats', array( 'aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio', 'chat' ) );
/*----------------------*/
/* Theme Options */
/*----------------------*/
require_once ( get_template_directory() . '/includes/theme-options.php' );
add_action('after_setup_theme','koster_options_init', 9 );
// Set background colour based on theme option settings
add_action('wp_head','koster_background_color');
if ( ! function_exists( 'koster_background_color' ) ) {
function koster_background_color() {
$koster_options = get_option('koster_theme_options');
?>
<style type="text/css" media="screen">
html, form {
background:<?php echo $koster_options['background_color']; ?>;
}
body {
border-top-color:<?php echo $koster_options['link_color']; ?>
}
#header {
border-bottom-color:<?php echo $koster_options['background_color']; ?>;
}
#footer {
border-top-color:<?php echo $koster_options['background_color']; ?>;
}
body, #sidebar {
color: <?php echo $koster_options['text_color']; ?>;
}
h1, h2, h3, h4, h5, h6 {
color: <?php echo $koster_options['heading_color']; ?> !important;
}
a {
color: <?php echo $koster_options['link_color']; ?>;
}
article.post ol.commentlist li.bypostauthor .comment-author, .page ol.commentlist li.bypostauthor .comment-author {
background-color: <?php echo $koster_options['link_color']; ?>;
}
body, .archive_header:after {
background-color: <?php echo $koster_options['content_background_color']; ?>;
}
@media only screen and (min-width: 768px) {
.menu-main-menu-container ul.menu, .menu-main-menu-container ul.menu ul, .main-nav ul li a {
border-color:<?php echo $koster_options['background_color']; ?>;
}
}
</style>
<?php
}
}
// Display logo based on theme option settings. Display my gravatar if not set.
if ( ! function_exists( 'display_logo' ) ) {
function display_logo() {
$koster_options = get_option('koster_theme_options');
$logosrc = $koster_options['logo_url'];
?>
<div class="twocol logo">
<a href="<?php echo home_url(); ?>" title="<?php get_bloginfo('name'); ?>">
<img src="<?php if ($logosrc !== '') { echo $logosrc; } else { echo 'http://www.gravatar.com/avatar/babdd787a9577a0e615246ac79cf2826?s=256&d=identicon&r=PG'; } ?>" alt="<?php get_bloginfo('name'); ?>" class="mugshot">
</a>
</div>
<?php
}
}
/*----------------------*/
/* Enqueue scripts */
/*----------------------*/
if ( ! is_admin() ) { add_action( 'wp_enqueue_scripts', 'koster_add_scripts' ); }
if ( ! function_exists( 'koster_add_scripts' ) ) {
function koster_add_scripts() {
wp_enqueue_script( 'plugins', get_template_directory_uri() . '/js/plugins.js', array( 'jquery' ), '', true );
wp_enqueue_script( 'script', get_template_directory_uri() . '/js/responsive-enhance.js', array( 'jquery' ), '', true );
wp_enqueue_script( 'script', get_template_directory_uri() . '/js/script.js', array( 'jquery' ), '', true );
wp_register_style( 'woocommerce', get_template_directory_uri() . '/css/woocommerce.css' );
wp_enqueue_script( 'comment-reply' );
}
}
// Add HTML5 shim in <IE9
add_action('wp_head', 'koster_html5');
function koster_html5() {
global $is_IE;
if($is_IE) {
$browser = $_SERVER['HTTP_USER_AGENT'];
$browser = substr( "$browser", 25, 8);
if ($browser == "MSIE 6.0" || $browser == "MSIE 7.0" || $browser == "MSIE 8.0" ) {
echo '<script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>';
}
}
}
/*----------------------*/
/* Register main nav */
/*----------------------*/
register_nav_menu('main', 'Main menu');
/*----------------------*/
/* Register Sidebar */
/*----------------------*/
if ( function_exists('register_sidebar') )
register_sidebar(array(
'before_widget' => '<section class="widget">',
'after_widget' => '</section>',
'before_title' => '<h2>',
'after_title' => '</h2>',
));
/*----------------------*/
/* Prepare featured images for mobile which are served conditionally (big props to http://viewportindustries.com/blog/automatic-responsive-images-in-wordpress/) */
/*----------------------*/
add_image_size('thumbnail-bw', 400, 0, false);
/*----------------------*/
/* Define content width */
/*----------------------*/
if ( ! isset( $content_width ) ) $content_width = 900;
/*----------------------*/
/* Post Meta */
/*----------------------*/
if ( ! function_exists( 'koster_post_meta' ) ) {
function koster_post_meta() { ?>
<ul>
<li class="date"><i><?php _e('Posted on', 'koster'); ?></i> <?php the_time(get_option('date_format')); ?></li>
<li class="comment"><i><?php _e('Your thoughts', 'koster'); ?></i> <?php comments_popup_link( __( 'Leave a comment', 'koster' ), __( '1 Comment', 'koster' ), __( '% Comments', 'koster' ) ); ?></li>
<li class="permalink"><i><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'koster' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php _e('Permalink','koster'); ?></a></i></li>
</ul>
<?php }
}
/*----------------------*/
/* Pagination */
/*----------------------*/
if ( ! function_exists( 'koster_content_nav' ) ) :
/**
* Display navigation to next/previous pages when applicable (taken straight from TwentyEleven)
*/
function koster_content_nav( $nav_id ) {
global $wp_query;
if ( $wp_query->max_num_pages > 1 ) : ?>
<nav id="<?php echo $nav_id; ?>" class="navigation">
<div class="next"><?php previous_posts_link( __( '<span class="meta-nav">←</span> Newer posts', 'koster' ) ); ?></div>
<div class="prev"><?php next_posts_link( __( 'Older posts <span class="meta-nav">→</span>', 'koster' ) ); ?></div>
</nav><!-- #nav-above -->
<?php endif;
}
endif;
/*----------------------*/
/* Move text area in comment form above inputs */
/*----------------------*/
add_action( 'comment_form_defaults', 'koster_move_textarea' );
add_action( 'comment_form_top', 'koster_move_textarea' );
function koster_move_textarea( $input = array () ) {
static $textarea = '';
if ( 'comment_form_defaults' === current_filter() ) {
// Copy the field to our internal variable …
$textarea = $input['comment_field'];
// … and remove it from the defaults array.
$input['comment_field'] = '';
return $input;
}
print $textarea;
}
/*----------------------*/
/* WooCommerce */
/*----------------------*/
if (class_exists('woocommerce')) {
require_once ( get_template_directory() . '/includes/theme-woocommerce.php' );
add_action( 'wp_enqueue_scripts', create_function("", "wp_enqueue_style( 'woocommerce' );"));
}
?>