@@ -9,11 +9,11 @@ discard block |
||
9 | 9 | */ |
10 | 10 | |
11 | 11 | // Set the content width based on the theme's design and stylesheet. |
12 | -if ( ! isset( $content_width ) ) { |
|
12 | +if ( ! isset($content_width)) { |
|
13 | 13 | $content_width = 1920; |
14 | 14 | } /* pixels */ |
15 | 15 | |
16 | -if ( ! function_exists( 'strip_setup' ) ) : |
|
16 | +if ( ! function_exists('strip_setup')) : |
|
17 | 17 | /** |
18 | 18 | * Sets up theme defaults and registers support for various WordPress features. |
19 | 19 | * |
@@ -28,29 +28,29 @@ discard block |
||
28 | 28 | * adding custom login css |
29 | 29 | * changing text in footer of admin |
30 | 30 | */ |
31 | - require_once( 'assets/admin.php' ); |
|
31 | + require_once('assets/admin.php'); |
|
32 | 32 | /** |
33 | 33 | * Make theme available for translation |
34 | 34 | * Translations can be filed in the /languages/ directory |
35 | 35 | * If you're building a theme based on strip, use a find and replace |
36 | 36 | * to change 'strip' to the name of your theme in all the template files |
37 | 37 | */ |
38 | - load_theme_textdomain( 'strip', get_template_directory() . '/languages' ); |
|
38 | + load_theme_textdomain('strip', get_template_directory() . '/languages'); |
|
39 | 39 | |
40 | 40 | // Add default posts and comments RSS feed links to head. |
41 | - add_theme_support( 'automatic-feed-links' ); |
|
41 | + add_theme_support('automatic-feed-links'); |
|
42 | 42 | |
43 | 43 | /** |
44 | 44 | * Enable support for title-tag. Allows themes to add document title tag to HTML <head> (since version 4.1.). |
45 | 45 | */ |
46 | - add_theme_support( 'title-tag' ); |
|
46 | + add_theme_support('title-tag'); |
|
47 | 47 | |
48 | 48 | /** |
49 | 49 | * Enable support for custom logo. |
50 | 50 | * |
51 | 51 | * @since strip 1.0 |
52 | 52 | */ |
53 | - add_theme_support( 'custom-logo', array( |
|
53 | + add_theme_support('custom-logo', array( |
|
54 | 54 | 'height' => 156, |
55 | 55 | 'width' => 312, |
56 | 56 | 'flex-height' => true, |
@@ -63,11 +63,11 @@ discard block |
||
63 | 63 | * |
64 | 64 | * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ |
65 | 65 | */ |
66 | - add_theme_support( 'post-thumbnails' ); |
|
67 | - add_image_size( 'stri-featured-image', 1920, 960, true ); |
|
68 | - add_image_size( 'strip-large', 1920, 960, true ); // cropped. |
|
69 | - add_image_size( 'strip-medium', 624, 312, true ); // cropped. |
|
70 | - add_image_size( 'strip-thumbnail', 312, 156, true ); // cropped. |
|
66 | + add_theme_support('post-thumbnails'); |
|
67 | + add_image_size('stri-featured-image', 1920, 960, true); |
|
68 | + add_image_size('strip-large', 1920, 960, true); // cropped. |
|
69 | + add_image_size('strip-medium', 624, 312, true); // cropped. |
|
70 | + add_image_size('strip-thumbnail', 312, 156, true); // cropped. |
|
71 | 71 | |
72 | 72 | /** |
73 | 73 | * Remove paragraph tags around images. |
@@ -76,35 +76,35 @@ discard block |
||
76 | 76 | * @link https://css-tricks.com/snippets/wordpress/remove-paragraph-tags-from-around-images/ |
77 | 77 | * http://codex.wordpress.org/Function_Reference/wpautop gets the same result but also removes line blocks: remove_filter( 'the_content', 'wpautop' ); |
78 | 78 | */ |
79 | - function filter_ptags_on_images( $content ) { |
|
80 | - return preg_replace( '/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $content ); |
|
79 | + function filter_ptags_on_images($content) { |
|
80 | + return preg_replace('/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $content); |
|
81 | 81 | } |
82 | - add_filter( 'the_content', 'filter_ptags_on_images' ); |
|
82 | + add_filter('the_content', 'filter_ptags_on_images'); |
|
83 | 83 | |
84 | 84 | /** |
85 | 85 | * This theme uses wp_nav_menu() in one location. |
86 | 86 | */ |
87 | 87 | register_nav_menus(array( |
88 | - 'primary' => __( 'Primary Menu', 'strip' ), |
|
88 | + 'primary' => __('Primary Menu', 'strip'), |
|
89 | 89 | )); |
90 | 90 | |
91 | 91 | /* |
92 | 92 | * Switch default core markup for search form, comment form, and comments |
93 | 93 | * to output valid HTML5. |
94 | 94 | */ |
95 | - add_theme_support( 'html5', array( |
|
95 | + add_theme_support('html5', array( |
|
96 | 96 | 'search-form', |
97 | 97 | 'comment-form', |
98 | 98 | 'comment-list', |
99 | 99 | 'gallery', |
100 | 100 | 'caption', |
101 | 101 | 'widgets', |
102 | - ) ); |
|
102 | + )); |
|
103 | 103 | |
104 | 104 | /** |
105 | 105 | * Enable support for Post Formats |
106 | 106 | */ |
107 | - add_theme_support( 'post-formats', array( |
|
107 | + add_theme_support('post-formats', array( |
|
108 | 108 | 'image', |
109 | 109 | 'video', |
110 | 110 | 'quote', |
@@ -112,13 +112,13 @@ discard block |
||
112 | 112 | 'gallery', |
113 | 113 | 'audio', |
114 | 114 | 'chat', |
115 | - ) ); |
|
115 | + )); |
|
116 | 116 | |
117 | 117 | // Setup the WordPress core custom background feature. |
118 | 118 | add_theme_support('custom-background', apply_filters('strip_custom_background_args', array( |
119 | 119 | 'default-color' => 'ffffff', |
120 | 120 | 'default-image' => '', |
121 | - ) ) ); |
|
121 | + ))); |
|
122 | 122 | } |
123 | 123 | |
124 | 124 | /** |
@@ -126,42 +126,42 @@ discard block |
||
126 | 126 | * |
127 | 127 | * @link: http://cubiq.org/clean-up-and-optimize-wordpress-for-your-next-theme |
128 | 128 | */ |
129 | - remove_action( 'wp_head', 'wp_generator' ); |
|
130 | - remove_action( 'wp_head', 'wlwmanifest_link' ); |
|
131 | - remove_action( 'wp_head', 'rsd_link' ); |
|
132 | - remove_action( 'wp_head', 'wp_shortlink_wp_head' ); |
|
129 | + remove_action('wp_head', 'wp_generator'); |
|
130 | + remove_action('wp_head', 'wlwmanifest_link'); |
|
131 | + remove_action('wp_head', 'rsd_link'); |
|
132 | + remove_action('wp_head', 'wp_shortlink_wp_head'); |
|
133 | 133 | |
134 | - remove_action( 'wp_head', 'parent_post_rel_link' ); |
|
135 | - remove_action( 'wp_head', 'start_post_rel_link' ); |
|
136 | - remove_action( 'wp_head', 'index_rel_link' ); |
|
134 | + remove_action('wp_head', 'parent_post_rel_link'); |
|
135 | + remove_action('wp_head', 'start_post_rel_link'); |
|
136 | + remove_action('wp_head', 'index_rel_link'); |
|
137 | 137 | |
138 | - remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10 ); |
|
138 | + remove_action('wp_head', 'adjacent_posts_rel_link_wp_head', 10); |
|
139 | 139 | |
140 | - add_filter( 'the_generator', '__return_false' ); |
|
140 | + add_filter('the_generator', '__return_false'); |
|
141 | 141 | |
142 | - remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); |
|
143 | - remove_action( 'wp_print_styles', 'print_emoji_styles' ); |
|
142 | + remove_action('wp_head', 'print_emoji_detection_script', 7); |
|
143 | + remove_action('wp_print_styles', 'print_emoji_styles'); |
|
144 | 144 | |
145 | 145 | /** |
146 | 146 | * This theme styles the visual editor to resemble the theme style, |
147 | 147 | * specifically font, colors, icons, and column width. |
148 | 148 | */ |
149 | - add_editor_style( array( '/assets/css/editor-style.css', '/assets/fonts/fenix.css' ) ); |
|
149 | + add_editor_style(array('/assets/css/editor-style.css', '/assets/fonts/fenix.css')); |
|
150 | 150 | |
151 | 151 | // Indicate widget sidebars can use selective refresh in the Customizer. |
152 | 152 | // See https://make.wordpress.org/core/2016/03/22/implementing-selective-refresh-support-for-widgets/ for detail. |
153 | - add_theme_support( 'customize-selective-refresh-widgets' ); |
|
153 | + add_theme_support('customize-selective-refresh-widgets'); |
|
154 | 154 | endif; // strip_setup. |
155 | -add_action( 'after_setup_theme', 'strip_setup' ); |
|
155 | +add_action('after_setup_theme', 'strip_setup'); |
|
156 | 156 | |
157 | 157 | /** |
158 | 158 | * Register widgetized area and update sidebar with default widgets |
159 | 159 | */ |
160 | 160 | function strip_widgets_init() { |
161 | 161 | register_sidebar(array( |
162 | - 'name' => __( 'Main Sidebar', 'strip' ), |
|
162 | + 'name' => __('Main Sidebar', 'strip'), |
|
163 | 163 | 'id' => 'sidebar', |
164 | - 'description' => __( 'The main body widget area', 'strip' ), |
|
164 | + 'description' => __('The main body widget area', 'strip'), |
|
165 | 165 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
166 | 166 | 'after_widget' => '</aside>', |
167 | 167 | 'before_title' => '<h2 class="widget-title">', |
@@ -169,10 +169,10 @@ discard block |
||
169 | 169 | )); |
170 | 170 | |
171 | 171 | // First footer widget area, located in the footer. Empty by default. |
172 | - register_sidebar( array( |
|
173 | - 'name' => __( 'First Footer Widget', 'strip' ), |
|
172 | + register_sidebar(array( |
|
173 | + 'name' => __('First Footer Widget', 'strip'), |
|
174 | 174 | 'id' => 'first-footer-widget', |
175 | - 'description' => __( 'The first footer widget', 'strip' ), |
|
175 | + 'description' => __('The first footer widget', 'strip'), |
|
176 | 176 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
177 | 177 | 'after_widget' => '</aside>', |
178 | 178 | 'before_title' => '<h3 class="widget-title">', |
@@ -181,9 +181,9 @@ discard block |
||
181 | 181 | |
182 | 182 | // Second Footer Widget Area, located in the footer. Empty by default. |
183 | 183 | register_sidebar(array( |
184 | - 'name' => __( 'Second Footer Widget', 'strip' ), |
|
184 | + 'name' => __('Second Footer Widget', 'strip'), |
|
185 | 185 | 'id' => 'second-footer-widget', |
186 | - 'description' => __( 'The second footer widget', 'strip' ), |
|
186 | + 'description' => __('The second footer widget', 'strip'), |
|
187 | 187 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
188 | 188 | 'after_widget' => '</aside>', |
189 | 189 | 'before_title' => '<h3 class="widget-title">', |
@@ -192,9 +192,9 @@ discard block |
||
192 | 192 | |
193 | 193 | // Third Footer Widget Area, located in the footer. Empty by default. |
194 | 194 | register_sidebar(array( |
195 | - 'name' => __( 'Third Footer Widget', 'strip' ), |
|
195 | + 'name' => __('Third Footer Widget', 'strip'), |
|
196 | 196 | 'id' => 'third-footer-widget', |
197 | - 'description' => __( 'The third footer widget', 'strip' ), |
|
197 | + 'description' => __('The third footer widget', 'strip'), |
|
198 | 198 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
199 | 199 | 'after_widget' => '</aside>', |
200 | 200 | 'before_title' => '<h3 class="widget-title">', |
@@ -203,9 +203,9 @@ discard block |
||
203 | 203 | |
204 | 204 | // Fourth Footer Widget Area, located in the footer. Empty by default. |
205 | 205 | register_sidebar(array( |
206 | - 'name' => __( 'Fourth Footer Widget', 'strip' ), |
|
206 | + 'name' => __('Fourth Footer Widget', 'strip'), |
|
207 | 207 | 'id' => 'fourth-footer-widget', |
208 | - 'description' => __( 'The fourth footer widget', 'strip' ), |
|
208 | + 'description' => __('The fourth footer widget', 'strip'), |
|
209 | 209 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
210 | 210 | 'after_widget' => '</aside>', |
211 | 211 | 'before_title' => '<h3 class="widget-title">', |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | )); |
214 | 214 | |
215 | 215 | } |
216 | -add_action( 'widgets_init', 'strip_widgets_init' ); |
|
216 | +add_action('widgets_init', 'strip_widgets_init'); |
|
217 | 217 | |
218 | 218 | /** |
219 | 219 | * Handles JavaScript detection. |
@@ -225,47 +225,47 @@ discard block |
||
225 | 225 | function strip_javascript_detection() { |
226 | 226 | echo "<script>(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script>\n"; |
227 | 227 | } |
228 | -add_action( 'wp_head', 'strip_javascript_detection', 0 ); |
|
228 | +add_action('wp_head', 'strip_javascript_detection', 0); |
|
229 | 229 | |
230 | 230 | /** |
231 | 231 | * Enqueue_styles for custom fonts. |
232 | 232 | */ |
233 | 233 | function strip_scripts() { |
234 | 234 | // add custom font here if any. |
235 | - wp_enqueue_style( 'fenix', get_template_directory_uri() . '/assets/fonts/fenix.css', array(), null ); |
|
235 | + wp_enqueue_style('fenix', get_template_directory_uri() . '/assets/fonts/fenix.css', array(), null); |
|
236 | 236 | |
237 | - wp_enqueue_style( 'inconsolata', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null ); |
|
237 | + wp_enqueue_style('inconsolata', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null); |
|
238 | 238 | |
239 | 239 | // Theme stylesheet. |
240 | - wp_enqueue_style( 'strip-style', get_stylesheet_uri() ); |
|
240 | + wp_enqueue_style('strip-style', get_stylesheet_uri()); |
|
241 | 241 | |
242 | 242 | // Load the Internet Explorer specific stylesheet. Conditional stylesheet — tested and works with IE9 on Windows7. |
243 | - wp_enqueue_style( 'strip-ie', get_template_directory_uri() . 'assets/css/ie.css', array( 'strip-style' ), '20160305' ); |
|
244 | - wp_style_add_data( 'strip-ie', 'conditional', 'lt IE 10' ); |
|
243 | + wp_enqueue_style('strip-ie', get_template_directory_uri() . 'assets/css/ie.css', array('strip-style'), '20160305'); |
|
244 | + wp_style_add_data('strip-ie', 'conditional', 'lt IE 10'); |
|
245 | 245 | |
246 | - if ( has_nav_menu( 'primary' ) ) { |
|
247 | - wp_enqueue_script( 'strip-navigation', get_template_directory_uri() . '/assets/js/min/navigation-min.js', array(), '1.0', true ); |
|
246 | + if (has_nav_menu('primary')) { |
|
247 | + wp_enqueue_script('strip-navigation', get_template_directory_uri() . '/assets/js/min/navigation-min.js', array(), '1.0', true); |
|
248 | 248 | } |
249 | 249 | |
250 | 250 | // Load the html5 shiv. |
251 | - wp_enqueue_script( 'strip-html5', get_template_directory_uri() . '/assets/js/min/html5-min.js', array(), '3.7.3' ); |
|
252 | - wp_script_add_data( 'strip-html5', 'conditional', 'lt IE 9' ); |
|
251 | + wp_enqueue_script('strip-html5', get_template_directory_uri() . '/assets/js/min/html5-min.js', array(), '3.7.3'); |
|
252 | + wp_script_add_data('strip-html5', 'conditional', 'lt IE 9'); |
|
253 | 253 | |
254 | - wp_enqueue_script( 'strip-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/min/skip-link-focus-fix-min.js', array(), '1.0', true ); |
|
254 | + wp_enqueue_script('strip-skip-link-focus-fix', get_template_directory_uri() . '/assets/js/min/skip-link-focus-fix-min.js', array(), '1.0', true); |
|
255 | 255 | |
256 | 256 | // toggle comments js. |
257 | - wp_enqueue_script( 'strip-toggle-comments', get_template_directory_uri() . '/assets/js/min/toggle-comments-min.js', array( 'jquery' ), '1.2', true ); |
|
257 | + wp_enqueue_script('strip-toggle-comments', get_template_directory_uri() . '/assets/js/min/toggle-comments-min.js', array('jquery'), '1.2', true); |
|
258 | 258 | |
259 | - if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { |
|
260 | - wp_enqueue_script( 'comment-reply' ); |
|
259 | + if (is_singular() && comments_open() && get_option('thread_comments')) { |
|
260 | + wp_enqueue_script('comment-reply'); |
|
261 | 261 | |
262 | - if ( is_single() && wp_attachment_is_image() ) { |
|
263 | - wp_enqueue_script( 'strip-keyboard-image-navigation', get_template_directory_uri() . '/assets/js/min/keyboard-image-navigation-min.js', array( 'jquery' ), '20160412', true ); |
|
262 | + if (is_single() && wp_attachment_is_image()) { |
|
263 | + wp_enqueue_script('strip-keyboard-image-navigation', get_template_directory_uri() . '/assets/js/min/keyboard-image-navigation-min.js', array('jquery'), '20160412', true); |
|
264 | 264 | } |
265 | 265 | } |
266 | 266 | } |
267 | 267 | |
268 | -add_action( 'wp_enqueue_scripts', 'strip_scripts' ); |
|
268 | +add_action('wp_enqueue_scripts', 'strip_scripts'); |
|
269 | 269 | |
270 | 270 | /** |
271 | 271 | * Implement the Custom Header feature. |
@@ -292,14 +292,14 @@ discard block |
||
292 | 292 | */ |
293 | 293 | require get_template_directory() . '/inc/jetpack.php'; |
294 | 294 | |
295 | -add_action( 'wp_enqueue_scripts', 'enqueue_royal_sliders' ); |
|
295 | +add_action('wp_enqueue_scripts', 'enqueue_royal_sliders'); |
|
296 | 296 | /** |
297 | 297 | * Register RoyalSLider |
298 | 298 | */ |
299 | 299 | function enqueue_royal_sliders() { |
300 | - if ( function_exists( 'register_new_royalslider_files' ) ) { |
|
300 | + if (function_exists('register_new_royalslider_files')) { |
|
301 | 301 | // you could try this: if ( is_single() && is_archive() ) { but you don't really need it. |
302 | - register_new_royalslider_files( 1 ); // place register_new_royalslider_files function here, 1 is your slider's configuration number |
|
302 | + register_new_royalslider_files(1); // place register_new_royalslider_files function here, 1 is your slider's configuration number |
|
303 | 303 | // add } if use is_single etc. |
304 | 304 | } |
305 | 305 | } |
@@ -314,22 +314,22 @@ discard block |
||
314 | 314 | function get_first_image() { |
315 | 315 | global $post; |
316 | 316 | $first_img = ''; |
317 | - preg_match_all( '/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', do_shortcode( $post->post_content, 'gallery' ), $matches ); |
|
318 | - $first_img = isset( $matches[1][0] ) ? $matches[1][0] : null; |
|
317 | + preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', do_shortcode($post->post_content, 'gallery'), $matches); |
|
318 | + $first_img = isset($matches[1][0]) ? $matches[1][0] : null; |
|
319 | 319 | |
320 | - if ( empty( $first_img ) ) { |
|
320 | + if (empty($first_img)) { |
|
321 | 321 | return get_template_directory_uri() . '/assets/images/empty.png'; // path to default image. |
322 | 322 | } |
323 | 323 | |
324 | 324 | // Now we have the $first_img but we want the thumbnail of that image. |
325 | - $explode = explode( '.', $first_img ); |
|
326 | - $count = count( $explode ); |
|
325 | + $explode = explode('.', $first_img); |
|
326 | + $count = count($explode); |
|
327 | 327 | $size = '-624x312'; // Panel ratio (2:1) 312x156 for lighther page, 624x312 for retina; use add_image_size() and Force Regenerate Thumbnails plugin when changing sizes. |
328 | - $explode[ $count -2 ] = $explode[ $count -2 ] . '' . $size; |
|
329 | - $thumb_img = implode( '.', $explode ); |
|
328 | + $explode[$count - 2] = $explode[$count - 2] . '' . $size; |
|
329 | + $thumb_img = implode('.', $explode); |
|
330 | 330 | return $thumb_img; |
331 | 331 | } |
332 | - add_filter( 'get_first_image', 'thumbnail' ); |
|
332 | + add_filter('get_first_image', 'thumbnail'); |
|
333 | 333 | |
334 | 334 | /** |
335 | 335 | * Register Custom Post Type for comics |
@@ -337,26 +337,26 @@ discard block |
||
337 | 337 | function comic_post_type() { |
338 | 338 | |
339 | 339 | $labels = array( |
340 | - 'name' => _x( 'Comics', 'Post Type General Name', 'strip' ), |
|
341 | - 'singular_name' => _x( 'Comic', 'Post Type Singular Name', 'strip' ), |
|
342 | - 'menu_name' => _x( 'Comics', 'admin menu', 'strip' ), |
|
343 | - 'name_admin_bar' => _x( 'Comic', 'add new on admin bar', 'strip' ), |
|
344 | - 'archives' => __( 'Item Archives', 'strip' ), |
|
345 | - 'attributes' => __( 'Item Attributes', 'strip' ), |
|
346 | - 'parent_item_colon' => __( 'Parent Comic:', 'strip' ), |
|
347 | - 'all_items' => __( 'All Comics', 'strip' ), |
|
348 | - 'add_new_item' => __( 'Add New Comic', 'strip' ), |
|
349 | - 'add_new' => __( 'Add New Comic', 'strip' ), |
|
350 | - 'new_item' => __( 'New Comic', 'strip' ), |
|
351 | - 'edit_item' => __( 'Edit Comic', 'strip' ), |
|
352 | - 'update_item' => __( 'Update Comic', 'strip' ), |
|
353 | - 'view_item' => __( 'View Comic', 'strip' ), |
|
354 | - 'search_items' => __( 'Search Item', 'strip' ), |
|
355 | - 'not_found' => __( 'No Comics found', 'strip' ), |
|
356 | - 'not_found_in_trash' => __( 'No Comics found in Trash', 'strip' ), |
|
357 | - 'items_list' => __( 'Comics list', 'strip' ), |
|
358 | - 'items_list_navigation' => __( 'Comics list navigation', 'strip' ), |
|
359 | - 'filter_items_list' => __( 'Filter Comics list', 'strip' ), |
|
340 | + 'name' => _x('Comics', 'Post Type General Name', 'strip'), |
|
341 | + 'singular_name' => _x('Comic', 'Post Type Singular Name', 'strip'), |
|
342 | + 'menu_name' => _x('Comics', 'admin menu', 'strip'), |
|
343 | + 'name_admin_bar' => _x('Comic', 'add new on admin bar', 'strip'), |
|
344 | + 'archives' => __('Item Archives', 'strip'), |
|
345 | + 'attributes' => __('Item Attributes', 'strip'), |
|
346 | + 'parent_item_colon' => __('Parent Comic:', 'strip'), |
|
347 | + 'all_items' => __('All Comics', 'strip'), |
|
348 | + 'add_new_item' => __('Add New Comic', 'strip'), |
|
349 | + 'add_new' => __('Add New Comic', 'strip'), |
|
350 | + 'new_item' => __('New Comic', 'strip'), |
|
351 | + 'edit_item' => __('Edit Comic', 'strip'), |
|
352 | + 'update_item' => __('Update Comic', 'strip'), |
|
353 | + 'view_item' => __('View Comic', 'strip'), |
|
354 | + 'search_items' => __('Search Item', 'strip'), |
|
355 | + 'not_found' => __('No Comics found', 'strip'), |
|
356 | + 'not_found_in_trash' => __('No Comics found in Trash', 'strip'), |
|
357 | + 'items_list' => __('Comics list', 'strip'), |
|
358 | + 'items_list_navigation' => __('Comics list navigation', 'strip'), |
|
359 | + 'filter_items_list' => __('Filter Comics list', 'strip'), |
|
360 | 360 | ); |
361 | 361 | |
362 | 362 | $supports = array( |
@@ -373,11 +373,11 @@ discard block |
||
373 | 373 | ); |
374 | 374 | |
375 | 375 | $args = array( |
376 | - 'label' => __( 'Comic', 'strip' ), |
|
377 | - 'description' => __( 'Publish Comics and Webcomics', 'strip' ), |
|
376 | + 'label' => __('Comic', 'strip'), |
|
377 | + 'description' => __('Publish Comics and Webcomics', 'strip'), |
|
378 | 378 | 'labels' => $labels, |
379 | 379 | 'supports' => $supports, |
380 | - 'taxonomies' => array( 'story', 'story_term', 'draft' ), |
|
380 | + 'taxonomies' => array('story', 'story_term', 'draft'), |
|
381 | 381 | 'hierarchical' => true, |
382 | 382 | 'public' => true, |
383 | 383 | 'show_ui' => true, |
@@ -390,40 +390,40 @@ discard block |
||
390 | 390 | 'has_archive' => true, |
391 | 391 | 'feeds' => true, |
392 | 392 | 'exclude_from_search' => false, |
393 | - 'rewrite' => array( 'slug' => 'stories', 'with_front' => true ), |
|
393 | + 'rewrite' => array('slug' => 'stories', 'with_front' => true), |
|
394 | 394 | 'publicly_queryable' => true, |
395 | 395 | 'capability_type' => 'post', |
396 | 396 | ); |
397 | - register_post_type( 'comic', $args ); |
|
397 | + register_post_type('comic', $args); |
|
398 | 398 | } |
399 | 399 | |
400 | 400 | // Hook into the 'init' action. |
401 | -add_action( 'init', 'comic_post_type', 0 ); // End of register_cpt_comic(). |
|
401 | +add_action('init', 'comic_post_type', 0); // End of register_cpt_comic(). |
|
402 | 402 | |
403 | 403 | /** |
404 | 404 | * Register Custom Taxonomy 'story' |
405 | 405 | */ |
406 | 406 | function comic_story_taxonomy() { |
407 | 407 | $labels = array( |
408 | - 'name' => _x( 'Comic Story', 'Taxonomy General Name', 'strip' ), |
|
409 | - 'singular_name' => _x( 'Comic Story', 'Taxonomy Singular Name', 'strip' ), |
|
410 | - 'menu_name' => __( 'Comic Stories', 'strip' ), |
|
411 | - 'all_items' => __( 'All Comic Stories', 'strip' ), |
|
412 | - 'parent_item' => __( 'Parent Story', 'strip' ), |
|
413 | - 'parent_item_colon' => __( 'Parent Story:', 'strip' ), |
|
414 | - 'new_item_name' => __( 'New Comic Story', 'strip' ), |
|
415 | - 'add_new_item' => __( 'Add New Story', 'strip' ), |
|
416 | - 'edit_item' => __( 'Edit Story', 'strip' ), |
|
417 | - 'update_item' => __( 'Update Story', 'strip' ), |
|
418 | - 'view_item' => __( 'View Item', 'strip' ), |
|
419 | - 'separate_items_with_commas' => __( 'Separate stories with commas', 'strip' ), |
|
420 | - 'add_or_remove_items' => __( 'Add or Remove Stories', 'strip' ), |
|
421 | - 'choose_from_most_used' => __( 'Choose from the most used stories', 'strip' ), |
|
422 | - 'popular_items' => __( 'Popular comic stories', 'strip' ), |
|
423 | - 'search_items' => __( 'Search Stories', 'strip' ), |
|
424 | - 'not_found' => __( 'No comic Stories found', 'strip' ), |
|
425 | - 'items_list' => __( 'Comic Stories list', 'strip' ), |
|
426 | - 'items_list_navigation' => __( 'Comic Stories list navigation', 'strip' ), |
|
408 | + 'name' => _x('Comic Story', 'Taxonomy General Name', 'strip'), |
|
409 | + 'singular_name' => _x('Comic Story', 'Taxonomy Singular Name', 'strip'), |
|
410 | + 'menu_name' => __('Comic Stories', 'strip'), |
|
411 | + 'all_items' => __('All Comic Stories', 'strip'), |
|
412 | + 'parent_item' => __('Parent Story', 'strip'), |
|
413 | + 'parent_item_colon' => __('Parent Story:', 'strip'), |
|
414 | + 'new_item_name' => __('New Comic Story', 'strip'), |
|
415 | + 'add_new_item' => __('Add New Story', 'strip'), |
|
416 | + 'edit_item' => __('Edit Story', 'strip'), |
|
417 | + 'update_item' => __('Update Story', 'strip'), |
|
418 | + 'view_item' => __('View Item', 'strip'), |
|
419 | + 'separate_items_with_commas' => __('Separate stories with commas', 'strip'), |
|
420 | + 'add_or_remove_items' => __('Add or Remove Stories', 'strip'), |
|
421 | + 'choose_from_most_used' => __('Choose from the most used stories', 'strip'), |
|
422 | + 'popular_items' => __('Popular comic stories', 'strip'), |
|
423 | + 'search_items' => __('Search Stories', 'strip'), |
|
424 | + 'not_found' => __('No comic Stories found', 'strip'), |
|
425 | + 'items_list' => __('Comic Stories list', 'strip'), |
|
426 | + 'items_list_navigation' => __('Comic Stories list navigation', 'strip'), |
|
427 | 427 | ); |
428 | 428 | $args = array( |
429 | 429 | 'labels' => $labels, |
@@ -435,14 +435,14 @@ discard block |
||
435 | 435 | 'show_in_nav_menus' => true, |
436 | 436 | 'show_tagcloud' => true, |
437 | 437 | 'query_var' => true, |
438 | - 'rewrite' => array( 'slug' => 'story' ), |
|
438 | + 'rewrite' => array('slug' => 'story'), |
|
439 | 439 | ); |
440 | - register_taxonomy( 'story', array( 'comic' ), $args ); |
|
441 | - register_taxonomy_for_object_type( 'story', 'comic' ); |
|
440 | + register_taxonomy('story', array('comic'), $args); |
|
441 | + register_taxonomy_for_object_type('story', 'comic'); |
|
442 | 442 | } |
443 | 443 | |
444 | 444 | // Hook into the 'init' action. |
445 | -add_action( 'init', 'comic_story_taxonomy', 0 ); |
|
445 | +add_action('init', 'comic_story_taxonomy', 0); |
|
446 | 446 | |
447 | 447 | /** |
448 | 448 | * Function strip rewrite rules. |
@@ -451,31 +451,31 @@ discard block |
||
451 | 451 | flush_rewrite_rules(); |
452 | 452 | } |
453 | 453 | /* Flush rewrite rules for custom post types. */ |
454 | -add_action( 'after_switch_theme', 'strip_rewrite_rules' ); |
|
454 | +add_action('after_switch_theme', 'strip_rewrite_rules'); |
|
455 | 455 | |
456 | 456 | // Add Print taxonomy, NOT hierarchical (like tags) |
457 | 457 | // Register Custom Taxonomy. |
458 | 458 | $labels = array( |
459 | - 'name' => _x( 'Prints', 'Taxonomy General Name', 'strip' ), |
|
460 | - 'singular_name' => _x( 'Print', 'Taxonomy Singular Name', 'strip' ), |
|
461 | - 'menu_name' => __( 'Print', 'strip' ), |
|
462 | - 'all_items' => __( 'All Prints', 'strip' ), |
|
463 | - 'parent_item' => __( 'Parent Print', 'strip' ), |
|
464 | - 'parent_item_colon' => __( 'Parent Print:', 'strip' ), |
|
465 | - 'new_item_name' => __( 'New Print Name', 'strip' ), |
|
466 | - 'add_new_item' => __( 'Add New Print', 'strip' ), |
|
467 | - 'edit_item' => __( 'Edit Print', 'strip' ), |
|
468 | - 'update_item' => __( 'Update Pring', 'strip' ), |
|
469 | - 'view_item' => __( 'View Print', 'strip' ), |
|
470 | - 'separate_items_with_commas' => __( 'Separate prints with commas', 'strip' ), |
|
471 | - 'add_or_remove_items' => __( 'Add or remove prints', 'strip' ), |
|
472 | - 'choose_from_most_used' => __( 'Choose from the most used', 'strip' ), |
|
473 | - 'popular_items' => __( 'Popular Prints', 'strip' ), |
|
474 | - 'search_items' => __( 'Search Prints', 'strip' ), |
|
475 | - 'not_found' => __( 'Not Found', 'strip' ), |
|
476 | - 'no_terms' => __( 'No prints', 'strip' ), |
|
477 | - 'items_list' => __( 'Prints list', 'strip' ), |
|
478 | - 'items_list_navigation' => __( 'Prints list navigation', 'strip' ), |
|
459 | + 'name' => _x('Prints', 'Taxonomy General Name', 'strip'), |
|
460 | + 'singular_name' => _x('Print', 'Taxonomy Singular Name', 'strip'), |
|
461 | + 'menu_name' => __('Print', 'strip'), |
|
462 | + 'all_items' => __('All Prints', 'strip'), |
|
463 | + 'parent_item' => __('Parent Print', 'strip'), |
|
464 | + 'parent_item_colon' => __('Parent Print:', 'strip'), |
|
465 | + 'new_item_name' => __('New Print Name', 'strip'), |
|
466 | + 'add_new_item' => __('Add New Print', 'strip'), |
|
467 | + 'edit_item' => __('Edit Print', 'strip'), |
|
468 | + 'update_item' => __('Update Pring', 'strip'), |
|
469 | + 'view_item' => __('View Print', 'strip'), |
|
470 | + 'separate_items_with_commas' => __('Separate prints with commas', 'strip'), |
|
471 | + 'add_or_remove_items' => __('Add or remove prints', 'strip'), |
|
472 | + 'choose_from_most_used' => __('Choose from the most used', 'strip'), |
|
473 | + 'popular_items' => __('Popular Prints', 'strip'), |
|
474 | + 'search_items' => __('Search Prints', 'strip'), |
|
475 | + 'not_found' => __('Not Found', 'strip'), |
|
476 | + 'no_terms' => __('No prints', 'strip'), |
|
477 | + 'items_list' => __('Prints list', 'strip'), |
|
478 | + 'items_list_navigation' => __('Prints list navigation', 'strip'), |
|
479 | 479 | ); |
480 | 480 | |
481 | 481 | $args = array( |
@@ -487,21 +487,21 @@ discard block |
||
487 | 487 | 'show_in_nav_menus' => true, |
488 | 488 | 'show_tagcloud' => true, |
489 | 489 | ); |
490 | - register_taxonomy( 'print', array( 'comic' ), $args ); |
|
490 | + register_taxonomy('print', array('comic'), $args); |
|
491 | 491 | |
492 | 492 | /* |
493 | 493 | * WooCommerce Hooks |
494 | 494 | * Layout |
495 | 495 | */ |
496 | - remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 ); |
|
497 | - remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 ); |
|
498 | - remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 ); |
|
499 | - remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 ); |
|
500 | - remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); |
|
501 | - remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 ); |
|
496 | + remove_action('woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0); |
|
497 | + remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10); |
|
498 | + remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10); |
|
499 | + remove_action('woocommerce_after_shop_loop', 'woocommerce_pagination', 10); |
|
500 | + remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20); |
|
501 | + remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30); |
|
502 | 502 | |
503 | - add_action( 'woocommerce_before_main_content', 'strip_wrapper_start', 10 ); |
|
504 | - add_action( 'woocommerce_after_main_content', 'strip_wrapper_end', 10 ); |
|
503 | + add_action('woocommerce_before_main_content', 'strip_wrapper_start', 10); |
|
504 | + add_action('woocommerce_after_main_content', 'strip_wrapper_end', 10); |
|
505 | 505 | |
506 | 506 | /** |
507 | 507 | * WooCommerce wrapper |
@@ -517,13 +517,13 @@ discard block |
||
517 | 517 | echo '</section>'; |
518 | 518 | } |
519 | 519 | |
520 | - add_action( 'after_setup_theme', 'woocommerce_support' ); |
|
520 | + add_action('after_setup_theme', 'woocommerce_support'); |
|
521 | 521 | /** |
522 | 522 | * Add WooCommerce support |
523 | 523 | * https://docs.woothemes.com/document/third-party-custom-theme-compatibility/* |
524 | 524 | */ |
525 | 525 | function woocommerce_support() { |
526 | - add_theme_support( 'woocommerce' ); |
|
526 | + add_theme_support('woocommerce'); |
|
527 | 527 | } |
528 | 528 | |
529 | 529 | /** |
@@ -531,13 +531,13 @@ discard block |
||
531 | 531 | */ |
532 | 532 | function wp_enqueue_woocommerce_style() { |
533 | 533 | |
534 | - wp_register_style( 'strip-woocommerce', get_template_directory_uri() . '/assets/css/woocommerce-min.css' ); |
|
535 | - if ( class_exists( 'woocommerce' ) ) { |
|
536 | - wp_enqueue_style( 'strip-woocommerce' ); |
|
534 | + wp_register_style('strip-woocommerce', get_template_directory_uri() . '/assets/css/woocommerce-min.css'); |
|
535 | + if (class_exists('woocommerce')) { |
|
536 | + wp_enqueue_style('strip-woocommerce'); |
|
537 | 537 | } |
538 | 538 | } |
539 | 539 | |
540 | - add_action( 'wp_enqueue_scripts', 'wp_enqueue_woocommerce_style' ); |
|
540 | + add_action('wp_enqueue_scripts', 'wp_enqueue_woocommerce_style'); |
|
541 | 541 | |
542 | 542 | /** |
543 | 543 | * Optimize WooCommerce Scripts |
@@ -548,53 +548,53 @@ discard block |
||
548 | 548 | * @link https://gist.github.com/DevinWalker/7621777 |
549 | 549 | * @link http://dessky.com/blog/disable-woocommerce-scripts-and-styles/ |
550 | 550 | */ |
551 | - add_action( 'wp_enqueue_scripts', 'strip_manage_woocommerce_styles', 99 ); |
|
551 | + add_action('wp_enqueue_scripts', 'strip_manage_woocommerce_styles', 99); |
|
552 | 552 | |
553 | 553 | /** |
554 | 554 | * Remove some WooCommerce queries. |
555 | 555 | */ |
556 | 556 | function strip_manage_woocommerce_styles() { |
557 | 557 | // remove generator meta tag. |
558 | - remove_action( 'wp_head', array( 'woocommerce', 'generator' ) ); // this line when used with $GLOBALS['woocommerce'] prompts an error when Woo is deactivated though. |
|
558 | + remove_action('wp_head', array('woocommerce', 'generator')); // this line when used with $GLOBALS['woocommerce'] prompts an error when Woo is deactivated though. |
|
559 | 559 | // first check that woo exists to prevent fatal errors. |
560 | - if ( function_exists( 'strip_is_woocommerce_activated' ) ) { |
|
560 | + if (function_exists('strip_is_woocommerce_activated')) { |
|
561 | 561 | // dequeue scripts and styles, unless we're in the store. |
562 | - if ( ! is_woocommerce() && ! is_cart() && ! is_checkout() ) { |
|
563 | - wp_dequeue_style( 'woocommerce_frontend_styles' ); |
|
564 | - wp_dequeue_style( 'woocommerce-general' ); |
|
565 | - wp_dequeue_style( 'woocommerce-layout' ); |
|
566 | - wp_dequeue_style( 'woocommerce-smallscreen' ); |
|
567 | - wp_dequeue_style( 'woocommerce_fancybox_styles' ); |
|
568 | - wp_dequeue_style( 'woocommerce_chosen_styles' ); |
|
569 | - wp_dequeue_style( 'woocommerce_prettyPhoto_css' ); |
|
570 | - wp_dequeue_style( 'select2' ); |
|
571 | - wp_dequeue_style( 'strip-woocommerce' ); // the theme's CSS overwrite. |
|
572 | - wp_dequeue_script( 'wc-add-payment-method' ); |
|
573 | - wp_dequeue_script( 'wc-lost-password' ); |
|
574 | - wp_dequeue_script( 'wc_price_slider' ); |
|
575 | - wp_dequeue_script( 'wc-single-product' ); |
|
576 | - wp_dequeue_script( 'wc-add-to-cart' ); |
|
577 | - wp_dequeue_script( 'wc-cart-fragments' ); |
|
578 | - wp_dequeue_script( 'wc-credit-card-form' ); |
|
579 | - wp_dequeue_script( 'wc-checkout' ); |
|
580 | - wp_dequeue_script( 'wc-add-to-cart-variation' ); |
|
581 | - wp_dequeue_script( 'wc-single-product' ); |
|
582 | - wp_dequeue_script( 'wc-cart' ); |
|
583 | - wp_dequeue_script( 'wc-chosen' ); |
|
584 | - wp_dequeue_script( 'woocommerce' ); |
|
585 | - wp_dequeue_script( 'jquery-cookie' ); |
|
586 | - wp_dequeue_script( 'prettyPhoto' ); |
|
587 | - wp_dequeue_script( 'prettyPhoto-init' ); |
|
588 | - wp_dequeue_script( 'jquery-blockui' ); |
|
589 | - wp_dequeue_script( 'jquery-placeholder' ); |
|
590 | - wp_dequeue_script( 'jquery-payment' ); |
|
591 | - wp_dequeue_script( 'fancybox' ); |
|
592 | - wp_dequeue_script( 'jqueryui' ); |
|
562 | + if ( ! is_woocommerce() && ! is_cart() && ! is_checkout()) { |
|
563 | + wp_dequeue_style('woocommerce_frontend_styles'); |
|
564 | + wp_dequeue_style('woocommerce-general'); |
|
565 | + wp_dequeue_style('woocommerce-layout'); |
|
566 | + wp_dequeue_style('woocommerce-smallscreen'); |
|
567 | + wp_dequeue_style('woocommerce_fancybox_styles'); |
|
568 | + wp_dequeue_style('woocommerce_chosen_styles'); |
|
569 | + wp_dequeue_style('woocommerce_prettyPhoto_css'); |
|
570 | + wp_dequeue_style('select2'); |
|
571 | + wp_dequeue_style('strip-woocommerce'); // the theme's CSS overwrite. |
|
572 | + wp_dequeue_script('wc-add-payment-method'); |
|
573 | + wp_dequeue_script('wc-lost-password'); |
|
574 | + wp_dequeue_script('wc_price_slider'); |
|
575 | + wp_dequeue_script('wc-single-product'); |
|
576 | + wp_dequeue_script('wc-add-to-cart'); |
|
577 | + wp_dequeue_script('wc-cart-fragments'); |
|
578 | + wp_dequeue_script('wc-credit-card-form'); |
|
579 | + wp_dequeue_script('wc-checkout'); |
|
580 | + wp_dequeue_script('wc-add-to-cart-variation'); |
|
581 | + wp_dequeue_script('wc-single-product'); |
|
582 | + wp_dequeue_script('wc-cart'); |
|
583 | + wp_dequeue_script('wc-chosen'); |
|
584 | + wp_dequeue_script('woocommerce'); |
|
585 | + wp_dequeue_script('jquery-cookie'); |
|
586 | + wp_dequeue_script('prettyPhoto'); |
|
587 | + wp_dequeue_script('prettyPhoto-init'); |
|
588 | + wp_dequeue_script('jquery-blockui'); |
|
589 | + wp_dequeue_script('jquery-placeholder'); |
|
590 | + wp_dequeue_script('jquery-payment'); |
|
591 | + wp_dequeue_script('fancybox'); |
|
592 | + wp_dequeue_script('jqueryui'); |
|
593 | 593 | } |
594 | 594 | } |
595 | 595 | } |
596 | 596 | |
597 | - add_action( 'pre_get_posts', 'strip_set_posts_per_page' ); |
|
597 | + add_action('pre_get_posts', 'strip_set_posts_per_page'); |
|
598 | 598 | /** |
599 | 599 | * Set posts, WooCommerce products & comics number per archive page |
600 | 600 | * Fixes 404 error on pagination due to CTP conflicting with WordPress posts_per_page default |
@@ -603,28 +603,28 @@ discard block |
||
603 | 603 | * @param string $query strip_set_posts_per_page. |
604 | 604 | * @return the posts per page. |
605 | 605 | */ |
606 | - function strip_set_posts_per_page( $query ) { |
|
606 | + function strip_set_posts_per_page($query) { |
|
607 | 607 | global $wp_the_query; |
608 | - if ( ( $query === $wp_the_query ) && ( is_home() ) && ( is_search() ) ) { |
|
609 | - $wp_the_query->set( 'post_type', array( 'post', 'comic', 'posts_per_page', 12 ) ); |
|
608 | + if (($query === $wp_the_query) && (is_home()) && (is_search())) { |
|
609 | + $wp_the_query->set('post_type', array('post', 'comic', 'posts_per_page', 12)); |
|
610 | 610 | } |
611 | - if ( ( $query === $wp_the_query ) && ( is_post_type_archive( 'product' ) ) ) { |
|
612 | - $wp_the_query->set( 'posts_per_page', 4 ); |
|
613 | - } elseif ( ( $query === $wp_the_query ) && ( is_archive() ) && ( is_tax( 'story' ) ) ) { |
|
614 | - $wp_the_query->set( 'posts_per_page', 3 ); |
|
611 | + if (($query === $wp_the_query) && (is_post_type_archive('product'))) { |
|
612 | + $wp_the_query->set('posts_per_page', 4); |
|
613 | + } elseif (($query === $wp_the_query) && (is_archive()) && (is_tax('story'))) { |
|
614 | + $wp_the_query->set('posts_per_page', 3); |
|
615 | 615 | } |
616 | 616 | return $wp_the_query; |
617 | 617 | } |
618 | 618 | |
619 | - add_action( 'pre_get_posts', 'add_my_post_types_to_query' ); |
|
619 | + add_action('pre_get_posts', 'add_my_post_types_to_query'); |
|
620 | 620 | /** |
621 | 621 | * Show 'comics' post types on home page. |
622 | 622 | * |
623 | 623 | * @param string $query add_my_post_types_to_query. |
624 | 624 | */ |
625 | - function add_my_post_types_to_query( $query ) { |
|
626 | - if ( is_home() && $query->is_main_query() ) { |
|
627 | - $query->set( 'post_type', array( 'post', 'page', 'comic' ) ); |
|
625 | + function add_my_post_types_to_query($query) { |
|
626 | + if (is_home() && $query->is_main_query()) { |
|
627 | + $query->set('post_type', array('post', 'page', 'comic')); |
|
628 | 628 | |
629 | 629 | } |
630 | 630 | return $query; |
@@ -637,35 +637,35 @@ discard block |
||
637 | 637 | * @param string $post_id set_default_object_terms. |
638 | 638 | * @param string $post set_default_object_terms. |
639 | 639 | */ |
640 | - function set_default_object_terms( $post_id, $post ) { |
|
641 | - if ( 'publish' === $post->post_status && 'comic' === $post->post_type ) { |
|
640 | + function set_default_object_terms($post_id, $post) { |
|
641 | + if ('publish' === $post->post_status && 'comic' === $post->post_type) { |
|
642 | 642 | $defaults = array( |
643 | - 'story' => array( 'draft' ), |
|
643 | + 'story' => array('draft'), |
|
644 | 644 | ); |
645 | - $taxonomies = get_object_taxonomies( $post->post_type ); |
|
646 | - foreach ( (array) $taxonomies as $taxonomy ) { |
|
647 | - $terms = get_the_terms( $post_id, $taxonomy ); |
|
648 | - if ( empty( $terms ) && array_key_exists( $taxonomy, $defaults ) ) { |
|
649 | - wp_set_object_terms( $post_id, $defaults[ $taxonomy ], $taxonomy ); |
|
645 | + $taxonomies = get_object_taxonomies($post->post_type); |
|
646 | + foreach ((array) $taxonomies as $taxonomy) { |
|
647 | + $terms = get_the_terms($post_id, $taxonomy); |
|
648 | + if (empty($terms) && array_key_exists($taxonomy, $defaults)) { |
|
649 | + wp_set_object_terms($post_id, $defaults[$taxonomy], $taxonomy); |
|
650 | 650 | } |
651 | 651 | } |
652 | 652 | } |
653 | 653 | } |
654 | - add_action( 'save_post', 'set_default_object_terms', 0, 2 ); |
|
654 | + add_action('save_post', 'set_default_object_terms', 0, 2); |
|
655 | 655 | |
656 | 656 | /** |
657 | 657 | * Remove jquery migrate $scripts for enhanced performance. |
658 | 658 | * |
659 | 659 | * @param strings $scripts remove_jquery_migrate. |
660 | 660 | */ |
661 | - function remove_jquery_migrate( $scripts ) { |
|
662 | - if ( is_admin() ) { |
|
661 | + function remove_jquery_migrate($scripts) { |
|
662 | + if (is_admin()) { |
|
663 | 663 | return; |
664 | 664 | } |
665 | - $scripts->remove( 'jquery' ); |
|
666 | - $scripts->add( 'jquery', false, array( 'jquery-core' ), '1.10.2' ); |
|
665 | + $scripts->remove('jquery'); |
|
666 | + $scripts->add('jquery', false, array('jquery-core'), '1.10.2'); |
|
667 | 667 | } |
668 | - add_action( 'wp_default_scripts', 'remove_jquery_migrate' ); |
|
668 | + add_action('wp_default_scripts', 'remove_jquery_migrate'); |
|
669 | 669 | |
670 | 670 | /** |
671 | 671 | * Remove login errors notices (security) |
@@ -673,4 +673,4 @@ discard block |
||
673 | 673 | function no_wordpress_errors() { |
674 | 674 | return 'Something is wrong!'; |
675 | 675 | } |
676 | - add_filter( 'login_errors', 'no_wordpress_errors' ); |
|
676 | + add_filter('login_errors', 'no_wordpress_errors'); |