@@ -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( 'strip-featured-image', 1920, 480, true ); |
|
68 | -add_image_size( 'strip-large', 1272, 636, 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('strip-featured-image', 1920, 480, true); |
|
68 | +add_image_size('strip-large', 1272, 636, 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 | * Remove paragraph tags around images. |
73 | 73 | * |
@@ -75,35 +75,35 @@ discard block |
||
75 | 75 | * @link https://css-tricks.com/snippets/wordpress/remove-paragraph-tags-from-around-images/ |
76 | 76 | * @see http://codex.wordpress.org/Function_Reference/wpautop gets the same result but removes line blocks: remove_filter( 'the_content', 'wpautop' ); |
77 | 77 | */ |
78 | - function filter_ptags_on_images( $img ) { |
|
79 | - return preg_replace( '/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $img ); |
|
78 | + function filter_ptags_on_images($img) { |
|
79 | + return preg_replace('/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $img); |
|
80 | 80 | } |
81 | - add_filter( 'the_content', 'filter_ptags_on_images' ); |
|
81 | + add_filter('the_content', 'filter_ptags_on_images'); |
|
82 | 82 | |
83 | 83 | /** |
84 | 84 | * This theme uses wp_nav_menu() in one location. |
85 | 85 | */ |
86 | 86 | register_nav_menus(array( |
87 | - 'primary' => __( 'Primary Menu', 'strip' ), |
|
87 | + 'primary' => __('Primary Menu', 'strip'), |
|
88 | 88 | )); |
89 | 89 | |
90 | 90 | /* |
91 | 91 | * Switch default core markup for search form, comment form, and comments |
92 | 92 | * to output valid HTML5. |
93 | 93 | */ |
94 | - add_theme_support( 'html5', array( |
|
94 | + add_theme_support('html5', array( |
|
95 | 95 | 'search-form', |
96 | 96 | 'comment-form', |
97 | 97 | 'comment-list', |
98 | 98 | 'gallery', |
99 | 99 | 'caption', |
100 | 100 | 'widgets', |
101 | - ) ); |
|
101 | + )); |
|
102 | 102 | |
103 | 103 | /** |
104 | 104 | * Enable support for Post Formats |
105 | 105 | */ |
106 | - add_theme_support( 'post-formats', array( |
|
106 | + add_theme_support('post-formats', array( |
|
107 | 107 | 'image', |
108 | 108 | 'video', |
109 | 109 | 'quote', |
@@ -111,35 +111,35 @@ discard block |
||
111 | 111 | 'gallery', |
112 | 112 | 'audio', |
113 | 113 | 'chat', |
114 | - ) ); |
|
114 | + )); |
|
115 | 115 | |
116 | 116 | // Setup the WordPress core custom background feature. |
117 | 117 | add_theme_support('custom-background', apply_filters('strip_custom_background_args', array( |
118 | 118 | 'default-color' => 'ffffff', |
119 | 119 | 'default-image' => '', |
120 | - ) ) ); |
|
120 | + ))); |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | /** |
124 | 124 | * This theme styles the visual editor to resemble the theme style, |
125 | 125 | * specifically font, colors, icons, and column width. |
126 | 126 | */ |
127 | - add_editor_style( array( '/assets/css/editor-style.css', '/assets/fonts/fenix.css' ) ); |
|
127 | + add_editor_style(array('/assets/css/editor-style.css', '/assets/fonts/fenix.css')); |
|
128 | 128 | |
129 | 129 | // Indicate widget sidebars can use selective refresh in the Customizer. |
130 | 130 | // See https://make.wordpress.org/core/2016/03/22/implementing-selective-refresh-support-for-widgets/ for detail. |
131 | - add_theme_support( 'customize-selective-refresh-widgets' ); |
|
131 | + add_theme_support('customize-selective-refresh-widgets'); |
|
132 | 132 | endif; // strip_setup. |
133 | -add_action( 'after_setup_theme', 'strip_setup' ); |
|
133 | +add_action('after_setup_theme', 'strip_setup'); |
|
134 | 134 | |
135 | 135 | /** |
136 | 136 | * Register widgetized area and update sidebar with default widgets |
137 | 137 | */ |
138 | 138 | function strip_widgets_init() { |
139 | 139 | register_sidebar(array( |
140 | - 'name' => __( 'Main Sidebar', 'strip' ), |
|
140 | + 'name' => __('Main Sidebar', 'strip'), |
|
141 | 141 | 'id' => 'sidebar', |
142 | - 'description' => __( 'The main body widget area', 'strip' ), |
|
142 | + 'description' => __('The main body widget area', 'strip'), |
|
143 | 143 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
144 | 144 | 'after_widget' => '</aside>', |
145 | 145 | 'before_title' => '<h2 class="widget-title">', |
@@ -147,10 +147,10 @@ discard block |
||
147 | 147 | )); |
148 | 148 | |
149 | 149 | // First footer widget area, located in the footer. Empty by default. |
150 | - register_sidebar( array( |
|
151 | - 'name' => __( 'First Footer Widget', 'strip' ), |
|
150 | + register_sidebar(array( |
|
151 | + 'name' => __('First Footer Widget', 'strip'), |
|
152 | 152 | 'id' => 'first-footer-widget', |
153 | - 'description' => __( 'The first footer widget', 'strip' ), |
|
153 | + 'description' => __('The first footer widget', 'strip'), |
|
154 | 154 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
155 | 155 | 'after_widget' => '</aside>', |
156 | 156 | 'before_title' => '<h3 class="widget-title">', |
@@ -159,9 +159,9 @@ discard block |
||
159 | 159 | |
160 | 160 | // Second Footer Widget Area, located in the footer. Empty by default. |
161 | 161 | register_sidebar(array( |
162 | - 'name' => __( 'Second Footer Widget', 'strip' ), |
|
162 | + 'name' => __('Second Footer Widget', 'strip'), |
|
163 | 163 | 'id' => 'second-footer-widget', |
164 | - 'description' => __( 'The second footer widget', 'strip' ), |
|
164 | + 'description' => __('The second footer widget', 'strip'), |
|
165 | 165 | 'before_widget' => '<aside id="%1$s" class="widget %2$s">', |
166 | 166 | 'after_widget' => '</aside>', |
167 | 167 | 'before_title' => '<h3 class="widget-title">', |
@@ -170,9 +170,9 @@ discard block |
||
170 | 170 | |
171 | 171 | // Third Footer Widget Area, located in the footer. Empty by default. |
172 | 172 | register_sidebar(array( |
173 | - 'name' => __( 'Third Footer Widget', 'strip' ), |
|
173 | + 'name' => __('Third Footer Widget', 'strip'), |
|
174 | 174 | 'id' => 'third-footer-widget', |
175 | - 'description' => __( 'The third footer widget', 'strip' ), |
|
175 | + 'description' => __('The third 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 | // Fourth Footer Widget Area, located in the footer. Empty by default. |
183 | 183 | register_sidebar(array( |
184 | - 'name' => __( 'Fourth Footer Widget', 'strip' ), |
|
184 | + 'name' => __('Fourth Footer Widget', 'strip'), |
|
185 | 185 | 'id' => 'fourth-footer-widget', |
186 | - 'description' => __( 'The fourth footer widget', 'strip' ), |
|
186 | + 'description' => __('The fourth 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">', |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | )); |
192 | 192 | |
193 | 193 | } |
194 | -add_action( 'widgets_init', 'strip_widgets_init' ); |
|
194 | +add_action('widgets_init', 'strip_widgets_init'); |
|
195 | 195 | |
196 | 196 | /** |
197 | 197 | * Handles JavaScript detection. |
@@ -203,47 +203,47 @@ discard block |
||
203 | 203 | function strip_javascript_detection() { |
204 | 204 | echo "<script>(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script>\n"; |
205 | 205 | } |
206 | -add_action( 'wp_head', 'strip_javascript_detection', 0 ); |
|
206 | +add_action('wp_head', 'strip_javascript_detection', 0); |
|
207 | 207 | |
208 | 208 | /** |
209 | 209 | * Enqueue_styles for custom fonts. |
210 | 210 | */ |
211 | 211 | function strip_scripts() { |
212 | 212 | // add custom font here if any. |
213 | - wp_enqueue_style( 'fenix', get_template_directory_uri() . '/assets/fonts/fenix.css', array(), null ); |
|
213 | + wp_enqueue_style('fenix', get_template_directory_uri() . '/assets/fonts/fenix.css', array(), null); |
|
214 | 214 | |
215 | - wp_enqueue_style( 'inconsolata', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null ); |
|
215 | + wp_enqueue_style('inconsolata', get_template_directory_uri() . '/assets/fonts/inconsolata.css', array(), null); |
|
216 | 216 | |
217 | 217 | // Theme stylesheet. |
218 | - wp_enqueue_style( 'strip-style', get_stylesheet_uri() ); |
|
218 | + wp_enqueue_style('strip-style', get_stylesheet_uri()); |
|
219 | 219 | |
220 | 220 | // Load the Internet Explorer specific stylesheet. Conditional stylesheet — tested and works with IE9 on Windows7. |
221 | - wp_enqueue_style( 'strip-ie', get_template_directory_uri() . '/assets/css/ie.css', array( 'strip-style' ), '20160305' ); |
|
222 | - wp_style_add_data( 'strip-ie', 'conditional', 'lt IE 10' ); |
|
221 | + wp_enqueue_style('strip-ie', get_template_directory_uri() . '/assets/css/ie.css', array('strip-style'), '20160305'); |
|
222 | + wp_style_add_data('strip-ie', 'conditional', 'lt IE 10'); |
|
223 | 223 | |
224 | - if ( has_nav_menu( 'primary' ) ) { |
|
225 | - wp_enqueue_script( 'strip-navigation', get_template_directory_uri() . '/assets/js/min/navigation-min.js', array(), '1.0', true ); |
|
224 | + if (has_nav_menu('primary')) { |
|
225 | + wp_enqueue_script('strip-navigation', get_template_directory_uri() . '/assets/js/min/navigation-min.js', array(), '1.0', true); |
|
226 | 226 | } |
227 | 227 | |
228 | 228 | // Load the html5 shiv. |
229 | - wp_enqueue_script( 'strip-html5', get_template_directory_uri() . '/assets/js/min/html5-min.js', array(), '3.7.3' ); |
|
230 | - wp_script_add_data( 'strip-html5', 'conditional', 'lt IE 9' ); |
|
229 | + wp_enqueue_script('strip-html5', get_template_directory_uri() . '/assets/js/min/html5-min.js', array(), '3.7.3'); |
|
230 | + wp_script_add_data('strip-html5', 'conditional', 'lt IE 9'); |
|
231 | 231 | |
232 | - 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 ); |
|
232 | + 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); |
|
233 | 233 | |
234 | - if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { |
|
235 | - wp_enqueue_script( 'comment-reply' ); |
|
234 | + if (is_singular() && comments_open() && get_option('thread_comments')) { |
|
235 | + wp_enqueue_script('comment-reply'); |
|
236 | 236 | |
237 | 237 | // toggle comments js. |
238 | - wp_enqueue_script( 'strip-toggle-comments', get_template_directory_uri() . '/assets/js/min/toggle-comments-min.js', array( 'jquery' ), '1.2', true ); |
|
238 | + wp_enqueue_script('strip-toggle-comments', get_template_directory_uri() . '/assets/js/min/toggle-comments-min.js', array('jquery'), '1.2', true); |
|
239 | 239 | |
240 | - if ( is_single() && wp_attachment_is_image() ) { |
|
241 | - wp_enqueue_script( 'strip-keyboard-image-navigation', get_template_directory_uri() . '/assets/js/min/keyboard-image-navigation-min.js', array( 'jquery' ), '20160412', true ); |
|
240 | + if (is_single() && wp_attachment_is_image()) { |
|
241 | + wp_enqueue_script('strip-keyboard-image-navigation', get_template_directory_uri() . '/assets/js/min/keyboard-image-navigation-min.js', array('jquery'), '20160412', true); |
|
242 | 242 | } |
243 | 243 | } |
244 | 244 | } |
245 | 245 | |
246 | -add_action( 'wp_enqueue_scripts', 'strip_scripts' ); |
|
246 | +add_action('wp_enqueue_scripts', 'strip_scripts'); |
|
247 | 247 | |
248 | 248 | /** |
249 | 249 | * Implement the Custom Header feature. |
@@ -270,14 +270,14 @@ discard block |
||
270 | 270 | */ |
271 | 271 | require get_template_directory() . '/inc/jetpack.php'; |
272 | 272 | |
273 | -add_action( 'wp_enqueue_scripts', 'enqueue_royal_sliders' ); |
|
273 | +add_action('wp_enqueue_scripts', 'enqueue_royal_sliders'); |
|
274 | 274 | /** |
275 | 275 | * Register RoyalSLider |
276 | 276 | */ |
277 | 277 | function enqueue_royal_sliders() { |
278 | - if ( function_exists( 'register_new_royalslider_files' ) ) { |
|
278 | + if (function_exists('register_new_royalslider_files')) { |
|
279 | 279 | // you could try this: if ( is_single() && is_archive() ) { but you don't really need it. |
280 | - register_new_royalslider_files( 1 ); // 1 is RoyalSlider configuration number |
|
280 | + register_new_royalslider_files(1); // 1 is RoyalSlider configuration number |
|
281 | 281 | // add } if use is_single etc. |
282 | 282 | } |
283 | 283 | } |
@@ -290,24 +290,24 @@ discard block |
||
290 | 290 | * @link https://gist.github.com/SilentComics/0a7ea47942eb759dbb48eac2b7be1bbc/ |
291 | 291 | */ |
292 | 292 | function get_first_image() { |
293 | - $post = get_post(); |
|
293 | + $post = get_post(); |
|
294 | 294 | $first_img = ''; |
295 | - preg_match_all( '/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', do_shortcode( $post->post_content, 'gallery' ), $matches ); |
|
296 | - $first_img = isset( $matches[1][0] ) ? $matches[1][0] : null; |
|
295 | + preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', do_shortcode($post->post_content, 'gallery'), $matches); |
|
296 | + $first_img = isset($matches[1][0]) ? $matches[1][0] : null; |
|
297 | 297 | |
298 | - if ( empty( $first_img ) ) { |
|
298 | + if (empty($first_img)) { |
|
299 | 299 | return get_template_directory_uri() . '/assets/images/empty.png'; // path to default image. |
300 | 300 | } |
301 | 301 | |
302 | 302 | // Now we have the $first_img but we want the thumbnail of that image. |
303 | - $explode = explode( '.', $first_img ); |
|
304 | - $count = count( $explode ); |
|
303 | + $explode = explode('.', $first_img); |
|
304 | + $count = count($explode); |
|
305 | 305 | $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. |
306 | - $explode[ $count -2 ] = $explode[ $count -2 ] . '' . $size; |
|
307 | - $thumb_img = implode( '.', $explode ); |
|
306 | + $explode[$count - 2] = $explode[$count - 2] . '' . $size; |
|
307 | + $thumb_img = implode('.', $explode); |
|
308 | 308 | return $thumb_img; |
309 | 309 | } |
310 | - add_filter( 'get_first_image', 'thumbnail' ); |
|
310 | + add_filter('get_first_image', 'thumbnail'); |
|
311 | 311 | |
312 | 312 | /** |
313 | 313 | * Register Custom Post Type for comics with REST API support |
@@ -315,24 +315,24 @@ discard block |
||
315 | 315 | function comic_post_type() { |
316 | 316 | |
317 | 317 | $labels = array( |
318 | - 'name' => _x( 'Comics', 'Post Type General Name', 'strip' ), |
|
319 | - 'singular_name' => _x( 'Comic', 'Post Type Singular Name', 'strip' ), |
|
320 | - 'menu_name' => _x( 'Comics', 'admin menu', 'strip' ), |
|
321 | - 'name_admin_bar' => _x( 'Comic', 'add new on admin bar', 'strip' ), |
|
322 | - 'parent_item_colon' => __( 'Parent Comic:', 'strip' ), |
|
323 | - 'all_items' => __( 'All Comics', 'strip' ), |
|
324 | - 'add_new_item' => __( 'Add New Comic', 'strip' ), |
|
325 | - 'add_new' => __( 'Add New Comic', 'strip' ), |
|
326 | - 'new_item' => __( 'New Comic', 'strip' ), |
|
327 | - 'edit_item' => __( 'Edit Comic', 'strip' ), |
|
328 | - 'update_item' => __( 'Update Comic', 'strip' ), |
|
329 | - 'view_item' => __( 'View Comic', 'strip' ), |
|
330 | - 'search_items' => __( 'Search Item', 'strip' ), |
|
331 | - 'not_found' => __( 'No Comics found', 'strip' ), |
|
332 | - 'not_found_in_trash' => __( 'No Comics found in Trash', 'strip' ), |
|
333 | - 'items_list' => __( 'Comics list', 'strip' ), |
|
334 | - 'items_list_navigation' => __( 'Comics list navigation', 'strip' ), |
|
335 | - 'filter_items_list' => __( 'Filter Comics list', 'strip' ), |
|
318 | + 'name' => _x('Comics', 'Post Type General Name', 'strip'), |
|
319 | + 'singular_name' => _x('Comic', 'Post Type Singular Name', 'strip'), |
|
320 | + 'menu_name' => _x('Comics', 'admin menu', 'strip'), |
|
321 | + 'name_admin_bar' => _x('Comic', 'add new on admin bar', 'strip'), |
|
322 | + 'parent_item_colon' => __('Parent Comic:', 'strip'), |
|
323 | + 'all_items' => __('All Comics', 'strip'), |
|
324 | + 'add_new_item' => __('Add New Comic', 'strip'), |
|
325 | + 'add_new' => __('Add New Comic', 'strip'), |
|
326 | + 'new_item' => __('New Comic', 'strip'), |
|
327 | + 'edit_item' => __('Edit Comic', 'strip'), |
|
328 | + 'update_item' => __('Update Comic', 'strip'), |
|
329 | + 'view_item' => __('View Comic', 'strip'), |
|
330 | + 'search_items' => __('Search Item', 'strip'), |
|
331 | + 'not_found' => __('No Comics found', 'strip'), |
|
332 | + 'not_found_in_trash' => __('No Comics found in Trash', 'strip'), |
|
333 | + 'items_list' => __('Comics list', 'strip'), |
|
334 | + 'items_list_navigation' => __('Comics list navigation', 'strip'), |
|
335 | + 'filter_items_list' => __('Filter Comics list', 'strip'), |
|
336 | 336 | ); |
337 | 337 | |
338 | 338 | $supports = array( |
@@ -350,11 +350,11 @@ discard block |
||
350 | 350 | ); |
351 | 351 | |
352 | 352 | $args = array( |
353 | - 'label' => __( 'Comic', 'strip' ), |
|
354 | - 'description' => __( 'Publish Comics and Webcomics', 'strip' ), |
|
353 | + 'label' => __('Comic', 'strip'), |
|
354 | + 'description' => __('Publish Comics and Webcomics', 'strip'), |
|
355 | 355 | 'labels' => $labels, |
356 | 356 | 'supports' => $supports, |
357 | - 'taxonomies' => array( 'story', 'story_term', 'draft' ), |
|
357 | + 'taxonomies' => array('story', 'story_term', 'draft'), |
|
358 | 358 | 'hierarchical' => true, |
359 | 359 | 'public' => true, |
360 | 360 | 'show_in_rest' => true, |
@@ -370,40 +370,40 @@ discard block |
||
370 | 370 | 'has_archive' => true, |
371 | 371 | 'feeds' => true, |
372 | 372 | 'exclude_from_search' => false, |
373 | - 'rewrite' => array( 'slug' => 'stories', 'with_front' => true ), |
|
373 | + 'rewrite' => array('slug' => 'stories', 'with_front' => true), |
|
374 | 374 | 'publicly_queryable' => true, |
375 | 375 | 'capability_type' => 'post', |
376 | 376 | ); |
377 | - register_post_type( 'comic', $args ); |
|
377 | + register_post_type('comic', $args); |
|
378 | 378 | } |
379 | 379 | |
380 | 380 | // Hook into the 'init' action. |
381 | -add_action( 'init', 'comic_post_type', 0 ); // End of register_cpt_comic(). |
|
381 | +add_action('init', 'comic_post_type', 0); // End of register_cpt_comic(). |
|
382 | 382 | |
383 | 383 | /** |
384 | 384 | * Register Custom Taxonomy 'story' with REST API support |
385 | 385 | */ |
386 | 386 | function comic_story_taxonomy() { |
387 | 387 | $labels = array( |
388 | - 'name' => _x( 'Comic Story', 'Taxonomy General Name', 'strip' ), |
|
389 | - 'singular_name' => _x( 'Comic Story', 'Taxonomy Singular Name', 'strip' ), |
|
390 | - 'menu_name' => __( 'Comic Stories', 'strip' ), |
|
391 | - 'all_items' => __( 'All Comic Stories', 'strip' ), |
|
392 | - 'parent_item' => __( 'Parent Story', 'strip' ), |
|
393 | - 'parent_item_colon' => __( 'Parent Story:', 'strip' ), |
|
394 | - 'new_item_name' => __( 'New Comic Story', 'strip' ), |
|
395 | - 'add_new_item' => __( 'Add New Story', 'strip' ), |
|
396 | - 'edit_item' => __( 'Edit Story', 'strip' ), |
|
397 | - 'update_item' => __( 'Update Story', 'strip' ), |
|
398 | - 'view_item' => __( 'View Item', 'strip' ), |
|
399 | - 'separate_items_with_commas' => __( 'Separate stories with commas', 'strip' ), |
|
400 | - 'add_or_remove_items' => __( 'Add or Remove Stories', 'strip' ), |
|
401 | - 'choose_from_most_used' => __( 'Choose from the most used stories', 'strip' ), |
|
402 | - 'popular_items' => __( 'Popular comic stories', 'strip' ), |
|
403 | - 'search_items' => __( 'Search Stories', 'strip' ), |
|
404 | - 'not_found' => __( 'No comic Stories found', 'strip' ), |
|
405 | - 'items_list' => __( 'Comic Stories list', 'strip' ), |
|
406 | - 'items_list_navigation' => __( 'Comic Stories list navigation', 'strip' ), |
|
388 | + 'name' => _x('Comic Story', 'Taxonomy General Name', 'strip'), |
|
389 | + 'singular_name' => _x('Comic Story', 'Taxonomy Singular Name', 'strip'), |
|
390 | + 'menu_name' => __('Comic Stories', 'strip'), |
|
391 | + 'all_items' => __('All Comic Stories', 'strip'), |
|
392 | + 'parent_item' => __('Parent Story', 'strip'), |
|
393 | + 'parent_item_colon' => __('Parent Story:', 'strip'), |
|
394 | + 'new_item_name' => __('New Comic Story', 'strip'), |
|
395 | + 'add_new_item' => __('Add New Story', 'strip'), |
|
396 | + 'edit_item' => __('Edit Story', 'strip'), |
|
397 | + 'update_item' => __('Update Story', 'strip'), |
|
398 | + 'view_item' => __('View Item', 'strip'), |
|
399 | + 'separate_items_with_commas' => __('Separate stories with commas', 'strip'), |
|
400 | + 'add_or_remove_items' => __('Add or Remove Stories', 'strip'), |
|
401 | + 'choose_from_most_used' => __('Choose from the most used stories', 'strip'), |
|
402 | + 'popular_items' => __('Popular comic stories', 'strip'), |
|
403 | + 'search_items' => __('Search Stories', 'strip'), |
|
404 | + 'not_found' => __('No comic Stories found', 'strip'), |
|
405 | + 'items_list' => __('Comic Stories list', 'strip'), |
|
406 | + 'items_list_navigation' => __('Comic Stories list navigation', 'strip'), |
|
407 | 407 | ); |
408 | 408 | $args = array( |
409 | 409 | 'labels' => $labels, |
@@ -415,17 +415,17 @@ discard block |
||
415 | 415 | 'show_in_nav_menus' => true, |
416 | 416 | 'show_tagcloud' => true, |
417 | 417 | 'query_var' => true, |
418 | - 'rewrite' => array( 'slug' => 'story' ), |
|
418 | + 'rewrite' => array('slug' => 'story'), |
|
419 | 419 | 'show_in_rest' => true, |
420 | 420 | 'rest_base' => 'genre', |
421 | 421 | 'rest_controller_class' => 'WP_REST_Terms_Controller', |
422 | 422 | ); |
423 | - register_taxonomy( 'story', array( 'comic' ), $args ); |
|
424 | - register_taxonomy_for_object_type( 'story', 'comic' ); |
|
423 | + register_taxonomy('story', array('comic'), $args); |
|
424 | + register_taxonomy_for_object_type('story', 'comic'); |
|
425 | 425 | } |
426 | 426 | |
427 | 427 | // Hook into the 'init' action. |
428 | -add_action( 'init', 'comic_story_taxonomy', 0 ); |
|
428 | +add_action('init', 'comic_story_taxonomy', 0); |
|
429 | 429 | |
430 | 430 | /** |
431 | 431 | * Function strip rewrite rules. |
@@ -434,31 +434,31 @@ discard block |
||
434 | 434 | flush_rewrite_rules(); |
435 | 435 | } |
436 | 436 | /* Flush rewrite rules for custom post types. */ |
437 | -add_action( 'after_switch_theme', 'strip_rewrite_rules' ); |
|
437 | +add_action('after_switch_theme', 'strip_rewrite_rules'); |
|
438 | 438 | |
439 | 439 | // Add Print taxonomy, NOT hierarchical (like tags) |
440 | 440 | // Register Custom Taxonomy. |
441 | 441 | $labels = array( |
442 | - 'name' => _x( 'Prints', 'Taxonomy General Name', 'strip' ), |
|
443 | - 'singular_name' => _x( 'Print', 'Taxonomy Singular Name', 'strip' ), |
|
444 | - 'menu_name' => __( 'Print', 'strip' ), |
|
445 | - 'all_items' => __( 'All Prints', 'strip' ), |
|
446 | - 'parent_item' => __( 'Parent Print', 'strip' ), |
|
447 | - 'parent_item_colon' => __( 'Parent Print:', 'strip' ), |
|
448 | - 'new_item_name' => __( 'New Print Name', 'strip' ), |
|
449 | - 'add_new_item' => __( 'Add New Print', 'strip' ), |
|
450 | - 'edit_item' => __( 'Edit Print', 'strip' ), |
|
451 | - 'update_item' => __( 'Update Pring', 'strip' ), |
|
452 | - 'view_item' => __( 'View Print', 'strip' ), |
|
453 | - 'separate_items_with_commas' => __( 'Separate prints with commas', 'strip' ), |
|
454 | - 'add_or_remove_items' => __( 'Add or remove prints', 'strip' ), |
|
455 | - 'choose_from_most_used' => __( 'Choose from the most used', 'strip' ), |
|
456 | - 'popular_items' => __( 'Popular Prints', 'strip' ), |
|
457 | - 'search_items' => __( 'Search Prints', 'strip' ), |
|
458 | - 'not_found' => __( 'Not Found', 'strip' ), |
|
459 | - 'no_terms' => __( 'No prints', 'strip' ), |
|
460 | - 'items_list' => __( 'Prints list', 'strip' ), |
|
461 | - 'items_list_navigation' => __( 'Prints list navigation', 'strip' ), |
|
442 | + 'name' => _x('Prints', 'Taxonomy General Name', 'strip'), |
|
443 | + 'singular_name' => _x('Print', 'Taxonomy Singular Name', 'strip'), |
|
444 | + 'menu_name' => __('Print', 'strip'), |
|
445 | + 'all_items' => __('All Prints', 'strip'), |
|
446 | + 'parent_item' => __('Parent Print', 'strip'), |
|
447 | + 'parent_item_colon' => __('Parent Print:', 'strip'), |
|
448 | + 'new_item_name' => __('New Print Name', 'strip'), |
|
449 | + 'add_new_item' => __('Add New Print', 'strip'), |
|
450 | + 'edit_item' => __('Edit Print', 'strip'), |
|
451 | + 'update_item' => __('Update Pring', 'strip'), |
|
452 | + 'view_item' => __('View Print', 'strip'), |
|
453 | + 'separate_items_with_commas' => __('Separate prints with commas', 'strip'), |
|
454 | + 'add_or_remove_items' => __('Add or remove prints', 'strip'), |
|
455 | + 'choose_from_most_used' => __('Choose from the most used', 'strip'), |
|
456 | + 'popular_items' => __('Popular Prints', 'strip'), |
|
457 | + 'search_items' => __('Search Prints', 'strip'), |
|
458 | + 'not_found' => __('Not Found', 'strip'), |
|
459 | + 'no_terms' => __('No prints', 'strip'), |
|
460 | + 'items_list' => __('Prints list', 'strip'), |
|
461 | + 'items_list_navigation' => __('Prints list navigation', 'strip'), |
|
462 | 462 | ); |
463 | 463 | |
464 | 464 | $args = array( |
@@ -470,21 +470,21 @@ discard block |
||
470 | 470 | 'show_in_nav_menus' => true, |
471 | 471 | 'show_tagcloud' => true, |
472 | 472 | ); |
473 | - register_taxonomy( 'print', array( 'comic' ), $args ); |
|
473 | + register_taxonomy('print', array('comic'), $args); |
|
474 | 474 | |
475 | 475 | /* |
476 | 476 | * WooCommerce Hooks |
477 | 477 | * Layout |
478 | 478 | */ |
479 | - remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 ); |
|
480 | - remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 ); |
|
481 | - remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 ); |
|
479 | + remove_action('woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0); |
|
480 | + remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10); |
|
481 | + remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10); |
|
482 | 482 | // remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 ); // removes woo pagination. |
483 | - remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); |
|
484 | - remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 ); |
|
483 | + remove_action('woocommerce_before_shop_loop', 'woocommerce_result_count', 20); |
|
484 | + remove_action('woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30); |
|
485 | 485 | |
486 | - add_action( 'woocommerce_before_main_content', 'strip_wrapper_start', 10 ); |
|
487 | - add_action( 'woocommerce_after_main_content', 'strip_wrapper_end', 10 ); |
|
486 | + add_action('woocommerce_before_main_content', 'strip_wrapper_start', 10); |
|
487 | + add_action('woocommerce_after_main_content', 'strip_wrapper_end', 10); |
|
488 | 488 | |
489 | 489 | /** |
490 | 490 | * WooCommerce wrapper |
@@ -500,13 +500,13 @@ discard block |
||
500 | 500 | echo '</section>'; |
501 | 501 | } |
502 | 502 | |
503 | - add_action( 'after_setup_theme', 'woocommerce_support' ); |
|
503 | + add_action('after_setup_theme', 'woocommerce_support'); |
|
504 | 504 | /** |
505 | 505 | * Add WooCommerce support |
506 | 506 | * https://docs.woothemes.com/document/third-party-custom-theme-compatibility/* |
507 | 507 | */ |
508 | 508 | function woocommerce_support() { |
509 | - add_theme_support( 'woocommerce' ); |
|
509 | + add_theme_support('woocommerce'); |
|
510 | 510 | } |
511 | 511 | |
512 | 512 | /** |
@@ -514,13 +514,13 @@ discard block |
||
514 | 514 | */ |
515 | 515 | function wp_enqueue_woocommerce_style() { |
516 | 516 | |
517 | - wp_register_style( 'strip-woocommerce', get_template_directory_uri() . '/assets/css/woocommerce-min.css' ); |
|
518 | - if ( class_exists( 'woocommerce' ) ) { |
|
519 | - wp_enqueue_style( 'strip-woocommerce' ); |
|
517 | + wp_register_style('strip-woocommerce', get_template_directory_uri() . '/assets/css/woocommerce-min.css'); |
|
518 | + if (class_exists('woocommerce')) { |
|
519 | + wp_enqueue_style('strip-woocommerce'); |
|
520 | 520 | } |
521 | 521 | } |
522 | 522 | |
523 | - add_action( 'wp_enqueue_scripts', 'wp_enqueue_woocommerce_style' ); |
|
523 | + add_action('wp_enqueue_scripts', 'wp_enqueue_woocommerce_style'); |
|
524 | 524 | |
525 | 525 | /** |
526 | 526 | * Optimize WooCommerce Scripts |
@@ -531,53 +531,53 @@ discard block |
||
531 | 531 | * @link https://gist.github.com/DevinWalker/7621777 |
532 | 532 | * @link http://dessky.com/blog/disable-woocommerce-scripts-and-styles/ |
533 | 533 | */ |
534 | - add_action( 'wp_enqueue_scripts', 'strip_manage_woocommerce_styles', 99 ); |
|
534 | + add_action('wp_enqueue_scripts', 'strip_manage_woocommerce_styles', 99); |
|
535 | 535 | |
536 | 536 | /** |
537 | 537 | * Remove some WooCommerce queries. |
538 | 538 | */ |
539 | 539 | function strip_manage_woocommerce_styles() { |
540 | 540 | // remove generator meta tag. |
541 | - remove_action( 'wp_head', array( 'woocommerce', 'generator' ) ); |
|
541 | + remove_action('wp_head', array('woocommerce', 'generator')); |
|
542 | 542 | // first check that woo exists to prevent fatal errors. |
543 | - if ( function_exists( 'strip_is_woocommerce_activated' ) ) { |
|
543 | + if (function_exists('strip_is_woocommerce_activated')) { |
|
544 | 544 | // dequeue scripts and styles, unless we're in the store. |
545 | - if ( ! is_woocommerce() && ! is_cart() && ! is_checkout() ) { |
|
546 | - wp_dequeue_style( 'woocommerce_frontend_styles' ); |
|
547 | - wp_dequeue_style( 'woocommerce-general' ); |
|
548 | - wp_dequeue_style( 'woocommerce-layout' ); |
|
549 | - wp_dequeue_style( 'woocommerce-smallscreen' ); |
|
550 | - wp_dequeue_style( 'woocommerce_fancybox_styles' ); |
|
551 | - wp_dequeue_style( 'woocommerce_chosen_styles' ); |
|
552 | - wp_dequeue_style( 'woocommerce_prettyPhoto_css' ); |
|
553 | - wp_dequeue_style( 'select2' ); |
|
554 | - wp_dequeue_style( 'strip-woocommerce' ); // the theme's CSS overwrite. |
|
555 | - wp_dequeue_script( 'wc-add-payment-method' ); |
|
556 | - wp_dequeue_script( 'wc-lost-password' ); |
|
557 | - wp_dequeue_script( 'wc_price_slider' ); |
|
558 | - wp_dequeue_script( 'wc-single-product' ); |
|
559 | - wp_dequeue_script( 'wc-add-to-cart' ); |
|
560 | - wp_dequeue_script( 'wc-cart-fragments' ); |
|
561 | - wp_dequeue_script( 'wc-credit-card-form' ); |
|
562 | - wp_dequeue_script( 'wc-checkout' ); |
|
563 | - wp_dequeue_script( 'wc-add-to-cart-variation' ); |
|
564 | - wp_dequeue_script( 'wc-single-product' ); |
|
565 | - wp_dequeue_script( 'wc-cart' ); |
|
566 | - wp_dequeue_script( 'wc-chosen' ); |
|
567 | - wp_dequeue_script( 'woocommerce' ); |
|
568 | - wp_dequeue_script( 'jquery-cookie' ); |
|
569 | - wp_dequeue_script( 'prettyPhoto' ); |
|
570 | - wp_dequeue_script( 'prettyPhoto-init' ); |
|
571 | - wp_dequeue_script( 'jquery-blockui' ); |
|
572 | - wp_dequeue_script( 'jquery-placeholder' ); |
|
573 | - wp_dequeue_script( 'jquery-payment' ); |
|
574 | - wp_dequeue_script( 'fancybox' ); |
|
575 | - wp_dequeue_script( 'jqueryui' ); |
|
545 | + if ( ! is_woocommerce() && ! is_cart() && ! is_checkout()) { |
|
546 | + wp_dequeue_style('woocommerce_frontend_styles'); |
|
547 | + wp_dequeue_style('woocommerce-general'); |
|
548 | + wp_dequeue_style('woocommerce-layout'); |
|
549 | + wp_dequeue_style('woocommerce-smallscreen'); |
|
550 | + wp_dequeue_style('woocommerce_fancybox_styles'); |
|
551 | + wp_dequeue_style('woocommerce_chosen_styles'); |
|
552 | + wp_dequeue_style('woocommerce_prettyPhoto_css'); |
|
553 | + wp_dequeue_style('select2'); |
|
554 | + wp_dequeue_style('strip-woocommerce'); // the theme's CSS overwrite. |
|
555 | + wp_dequeue_script('wc-add-payment-method'); |
|
556 | + wp_dequeue_script('wc-lost-password'); |
|
557 | + wp_dequeue_script('wc_price_slider'); |
|
558 | + wp_dequeue_script('wc-single-product'); |
|
559 | + wp_dequeue_script('wc-add-to-cart'); |
|
560 | + wp_dequeue_script('wc-cart-fragments'); |
|
561 | + wp_dequeue_script('wc-credit-card-form'); |
|
562 | + wp_dequeue_script('wc-checkout'); |
|
563 | + wp_dequeue_script('wc-add-to-cart-variation'); |
|
564 | + wp_dequeue_script('wc-single-product'); |
|
565 | + wp_dequeue_script('wc-cart'); |
|
566 | + wp_dequeue_script('wc-chosen'); |
|
567 | + wp_dequeue_script('woocommerce'); |
|
568 | + wp_dequeue_script('jquery-cookie'); |
|
569 | + wp_dequeue_script('prettyPhoto'); |
|
570 | + wp_dequeue_script('prettyPhoto-init'); |
|
571 | + wp_dequeue_script('jquery-blockui'); |
|
572 | + wp_dequeue_script('jquery-placeholder'); |
|
573 | + wp_dequeue_script('jquery-payment'); |
|
574 | + wp_dequeue_script('fancybox'); |
|
575 | + wp_dequeue_script('jqueryui'); |
|
576 | 576 | } |
577 | 577 | } |
578 | 578 | } |
579 | 579 | |
580 | - add_action( 'pre_get_posts', 'strip_set_posts_per_page' ); |
|
580 | + add_action('pre_get_posts', 'strip_set_posts_per_page'); |
|
581 | 581 | /** |
582 | 582 | * Set posts, WooCommerce products & comics number per archive page |
583 | 583 | * Fixes 404 error on pagination due to CTP conflicting with WordPress posts_per_page default |
@@ -586,12 +586,12 @@ discard block |
||
586 | 586 | * @param WP_Query $query strip_set_posts_per_page. |
587 | 587 | * @return $query |
588 | 588 | */ |
589 | - function strip_set_posts_per_page( $query ) { |
|
590 | - if ( is_post_type_archive( 'product' ) ) { |
|
591 | - $query->set( 'posts_per_page', 4 ); |
|
589 | + function strip_set_posts_per_page($query) { |
|
590 | + if (is_post_type_archive('product')) { |
|
591 | + $query->set('posts_per_page', 4); |
|
592 | 592 | return $query; |
593 | - } elseif ( is_tax( 'story' ) ) { |
|
594 | - $query->set( 'posts_per_page', 6 ); |
|
593 | + } elseif (is_tax('story')) { |
|
594 | + $query->set('posts_per_page', 6); |
|
595 | 595 | } |
596 | 596 | } |
597 | 597 | |
@@ -615,35 +615,35 @@ discard block |
||
615 | 615 | * @param string $post_id set_default_object_terms. |
616 | 616 | * @param string $post set_default_object_terms. |
617 | 617 | */ |
618 | - function set_default_object_terms( $post_id, $post ) { |
|
619 | - if ( 'publish' === $post->post_status && 'comic' === $post->post_type ) { |
|
618 | + function set_default_object_terms($post_id, $post) { |
|
619 | + if ('publish' === $post->post_status && 'comic' === $post->post_type) { |
|
620 | 620 | $defaults = array( |
621 | - 'story' => array( 'draft' ), |
|
621 | + 'story' => array('draft'), |
|
622 | 622 | ); |
623 | - $taxonomies = get_object_taxonomies( $post->post_type ); |
|
624 | - foreach ( (array) $taxonomies as $taxonomy ) { |
|
625 | - $terms = get_the_terms( $post_id, $taxonomy ); |
|
626 | - if ( empty( $terms ) && array_key_exists( $taxonomy, $defaults ) ) { |
|
627 | - wp_set_object_terms( $post_id, $defaults[ $taxonomy ], $taxonomy ); |
|
623 | + $taxonomies = get_object_taxonomies($post->post_type); |
|
624 | + foreach ((array) $taxonomies as $taxonomy) { |
|
625 | + $terms = get_the_terms($post_id, $taxonomy); |
|
626 | + if (empty($terms) && array_key_exists($taxonomy, $defaults)) { |
|
627 | + wp_set_object_terms($post_id, $defaults[$taxonomy], $taxonomy); |
|
628 | 628 | } |
629 | 629 | } |
630 | 630 | } |
631 | 631 | } |
632 | - add_action( 'save_post', 'set_default_object_terms', 0, 2 ); |
|
632 | + add_action('save_post', 'set_default_object_terms', 0, 2); |
|
633 | 633 | |
634 | 634 | /** |
635 | 635 | * Remove jquery migrate $scripts for enhanced performance. |
636 | 636 | * |
637 | 637 | * @param strings $scripts remove_jquery_migrate. |
638 | 638 | */ |
639 | - function remove_jquery_migrate( $scripts ) { |
|
640 | - if ( is_admin() ) { |
|
639 | + function remove_jquery_migrate($scripts) { |
|
640 | + if (is_admin()) { |
|
641 | 641 | return; |
642 | 642 | } |
643 | - $scripts->remove( 'jquery' ); |
|
644 | - $scripts->add( 'jquery', false, array( 'jquery-core' ), '1.10.2' ); |
|
643 | + $scripts->remove('jquery'); |
|
644 | + $scripts->add('jquery', false, array('jquery-core'), '1.10.2'); |
|
645 | 645 | } |
646 | - add_action( 'wp_default_scripts', 'remove_jquery_migrate' ); |
|
646 | + add_action('wp_default_scripts', 'remove_jquery_migrate'); |
|
647 | 647 | |
648 | 648 | /** |
649 | 649 | * Remove login errors notices (security) |
@@ -651,4 +651,4 @@ discard block |
||
651 | 651 | function no_wordpress_errors() { |
652 | 652 | return 'Something is wrong!'; |
653 | 653 | } |
654 | - add_filter( 'login_errors', 'no_wordpress_errors' ); |
|
654 | + add_filter('login_errors', 'no_wordpress_errors'); |
@@ -17,9 +17,9 @@ discard block |
||
17 | 17 | <div class="wrap"> |
18 | 18 | <header class="entry-header"> |
19 | 19 | <h3 class="taxonomy-description"> |
20 | - <?php printf( '<a href="%s" class="post-parent-title">%s</a>', |
|
21 | - esc_url( get_post_type_archive_link( 'comic' ) ), |
|
22 | - esc_html( get_the_title() ) |
|
20 | + <?php printf('<a href="%s" class="post-parent-title">%s</a>', |
|
21 | + esc_url(get_post_type_archive_link('comic')), |
|
22 | + esc_html(get_the_title()) |
|
23 | 23 | ); ?> |
24 | 24 | </a></h3> |
25 | 25 | <h1 class="page-title"><?php the_title(); ?></h1> |
@@ -29,29 +29,29 @@ discard block |
||
29 | 29 | |
30 | 30 | <?php |
31 | 31 | // get the correct paged figure on a Custom Page That Isn’t Static Home Page. |
32 | - $paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1; ?> |
|
32 | + $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; ?> |
|
33 | 33 | |
34 | 34 | |
35 | 35 | <?php |
36 | 36 | |
37 | 37 | // Call and run loop in descending order. |
38 | - $loop = new WP_Query( array( |
|
38 | + $loop = new WP_Query(array( |
|
39 | 39 | 'post_type' => 'comic', |
40 | 40 | 'story' => '', // add story term here if you want this template to only archive a specific story. |
41 | 41 | 'posts_per_page' => 6, // changes default Blog pages number "reading settings" set in dashboard. |
42 | 42 | 'paged' => $paged, // you absolutely need this. |
43 | 43 | 'orderby' => 'title', // order by title or date. |
44 | 44 | 'order' => 'ASC', |
45 | - ) ); |
|
45 | + )); |
|
46 | 46 | |
47 | 47 | // Start the loop. |
48 | - if ( $loop->have_posts() ) : |
|
49 | - while ( $loop->have_posts() ) : |
|
48 | + if ($loop->have_posts()) : |
|
49 | + while ($loop->have_posts()) : |
|
50 | 50 | $loop->the_post(); |
51 | 51 | ?> |
52 | 52 | <div class="two-column"> |
53 | - <a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php printf( esc_html__( 'Permanent Link to %s', 'strip' ),the_title_attribute( 'echo=0' ) ); ?>"></a> |
|
54 | - <?php if ( get_the_post_thumbnail() !== '' ) { |
|
53 | + <a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php printf(esc_html__('Permanent Link to %s', 'strip'), the_title_attribute('echo=0')); ?>"></a> |
|
54 | + <?php if (get_the_post_thumbnail() !== '') { |
|
55 | 55 | |
56 | 56 | echo '<a href="'; |
57 | 57 | the_permalink(); |
@@ -66,12 +66,12 @@ discard block |
||
66 | 66 | the_permalink(); |
67 | 67 | echo '" class="thumbnail-wrapper">'; |
68 | 68 | echo '<img src="'; |
69 | - echo esc_html( get_first_image( 'strip-medium', 'url' ) ); |
|
69 | + echo esc_html(get_first_image('strip-medium', 'url')); |
|
70 | 70 | echo '" alt="" />'; |
71 | 71 | echo '</a>'; |
72 | 72 | } ?> |
73 | 73 | |
74 | -<h2 class="series-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php printf( esc_html__( 'Permanent Link to %s', 'strip' ), the_title_attribute( 'echo=0' ) ); ?>"><?php the_title(); ?></a></h2> |
|
74 | +<h2 class="series-title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php printf(esc_html__('Permanent Link to %s', 'strip'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2> |
|
75 | 75 | |
76 | 76 | </div><!-- .column --> |
77 | 77 | <?php endwhile; ?> |
@@ -82,23 +82,23 @@ discard block |
||
82 | 82 | |
83 | 83 | <?php |
84 | 84 | $big = 999999999; // need an unlikely integer. |
85 | - $translated = __( 'Page', 'strip' ); // supply translatable string. |
|
85 | + $translated = __('Page', 'strip'); // supply translatable string. |
|
86 | 86 | |
87 | - echo wp_kses_post( paginate_links( // Data validation: wp_kses_post see https://developer.wordpress.org/reference/functions/wp_kses_post/. |
|
87 | + echo wp_kses_post(paginate_links( // Data validation: wp_kses_post see https://developer.wordpress.org/reference/functions/wp_kses_post/. |
|
88 | 88 | array( |
89 | - 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), |
|
89 | + 'base' => str_replace($big, '%#%', esc_url(get_pagenum_link($big))), |
|
90 | 90 | 'format' => '?paged=%#%', |
91 | - 'current' => max( 1, get_query_var( 'paged', 1 ) ), |
|
91 | + 'current' => max(1, get_query_var('paged', 1)), |
|
92 | 92 | 'total' => $loop->max_num_pages, |
93 | 93 | 'before_page_number' => '<span class="screen-reader-text">' . $translated . ' </span>', |
94 | - 'prev_text' => esc_html__( 'Previous', 'strip' ), // If you want to change the previous link text. |
|
95 | - 'next_text' => esc_html__( 'Next', 'strip' ), // If you want to change the next link text. |
|
94 | + 'prev_text' => esc_html__('Previous', 'strip'), // If you want to change the previous link text. |
|
95 | + 'next_text' => esc_html__('Next', 'strip'), // If you want to change the next link text. |
|
96 | 96 | 'type' => 'title', // How you want the return value to be formatted. |
97 | 97 | 'add_fragment' => '#result', // Your anchor. |
98 | - ) ) ); |
|
98 | + ) )); |
|
99 | 99 | |
100 | 100 | else : |
101 | - get_template_part( 'no-results', 'archive-comic' ); |
|
101 | + get_template_part('no-results', 'archive-comic'); |
|
102 | 102 | endif; ?> |
103 | 103 | |
104 | 104 | </div><!-- .wrap --> |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | |
15 | 15 | <header class="entry-header"> |
16 | 16 | |
17 | - <?php the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); ?> |
|
17 | + <?php the_title('<h1 class="entry-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h1>'); ?> |
|
18 | 18 | |
19 | 19 | <?php // call the series by title and list them. ?> |
20 | 20 | |
@@ -23,9 +23,9 @@ discard block |
||
23 | 23 | <?php |
24 | 24 | $args = array( |
25 | 25 | 'post_type' => 'comic', |
26 | - 'title_li' => esc_html_e( '', 'strip' ), |
|
26 | + 'title_li' => esc_html_e('', 'strip'), |
|
27 | 27 | ); |
28 | - wp_list_pages( $args ); |
|
28 | + wp_list_pages($args); |
|
29 | 29 | ?> |
30 | 30 | </h2> |
31 | 31 | <br> |
@@ -6,8 +6,8 @@ discard block |
||
6 | 6 | * @subpackage Strip |
7 | 7 | */ |
8 | 8 | |
9 | -if ( post_type_exists( 'comic' ) ) { |
|
10 | - get_header( 'lite' ); |
|
9 | +if (post_type_exists('comic')) { |
|
10 | + get_header('lite'); |
|
11 | 11 | } else { |
12 | 12 | get_header(); |
13 | 13 | } |
@@ -18,25 +18,25 @@ discard block |
||
18 | 18 | |
19 | 19 | <?php |
20 | 20 | // Start the loop. |
21 | - while ( have_posts() ) : the_post(); ?> |
|
21 | + while (have_posts()) : the_post(); ?> |
|
22 | 22 | |
23 | 23 | <div class="entry-comic"> |
24 | 24 | |
25 | - <?php get_template_part( 'content-comic' ); ?> |
|
25 | + <?php get_template_part('content-comic'); ?> |
|
26 | 26 | |
27 | 27 | <div class="wrap clear"> |
28 | 28 | |
29 | - <h1 class="screen-reader-text"><?php esc_html_e( 'Post navigation', 'strip' ); ?></h1> |
|
29 | + <h1 class="screen-reader-text"><?php esc_html_e('Post navigation', 'strip'); ?></h1> |
|
30 | 30 | |
31 | 31 | <div class="navigation-comic"> |
32 | - <nav class="nav-first"><a href="<?php echo esc_url( first_comic_link() ); ?>"><?php esc_html_e( 'Start', 'strip' ); ?></a></nav> |
|
33 | - <nav class="nav-previous"><?php previous_post_link( '%link', __( 'Previous', 'strip' ), true, '', 'story' ); ?></nav> |
|
34 | - <nav class="nav-title"><?php the_title( '<h4 class="series-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h4>' ); ?></nav> |
|
35 | - <nav class="nav-next"><?php next_post_link( '%link', __( 'Next', 'strip' ), true, '', 'story' ); ?></nav> |
|
36 | - <nav class="nav-last"><a href="<?php echo esc_url( last_comic_link() ); ?>"><?php esc_html_e( 'Last', 'strip' ); ?></a></nav> |
|
32 | + <nav class="nav-first"><a href="<?php echo esc_url(first_comic_link()); ?>"><?php esc_html_e('Start', 'strip'); ?></a></nav> |
|
33 | + <nav class="nav-previous"><?php previous_post_link('%link', __('Previous', 'strip'), true, '', 'story'); ?></nav> |
|
34 | + <nav class="nav-title"><?php the_title('<h4 class="series-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h4>'); ?></nav> |
|
35 | + <nav class="nav-next"><?php next_post_link('%link', __('Next', 'strip'), true, '', 'story'); ?></nav> |
|
36 | + <nav class="nav-last"><a href="<?php echo esc_url(last_comic_link()); ?>"><?php esc_html_e('Last', 'strip'); ?></a></nav> |
|
37 | 37 | </div><!-- .wrap --> |
38 | 38 | |
39 | - <?php set_transient( 'story', $comic );?> |
|
39 | + <?php set_transient('story', $comic); ?> |
|
40 | 40 | |
41 | 41 | </div><!-- #entry-comic --> |
42 | 42 | |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | |
45 | 45 | <?php |
46 | 46 | // If comments are open or we have at least one comment, load up the comment template. |
47 | - if ( comments_open() || '0' !== get_comments_number() ) : |
|
47 | + if (comments_open() || '0' !== get_comments_number()) : |
|
48 | 48 | comments_template(); |
49 | 49 | endif; |
50 | 50 | |
@@ -52,4 +52,4 @@ discard block |
||
52 | 52 | |
53 | 53 | </main><!-- #content --> |
54 | 54 | </section><!-- #primary --> |
55 | -<?php get_footer( 'lite' ); ?> |
|
55 | +<?php get_footer('lite'); ?> |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | * the visitor has not yet entered the password we will |
19 | 19 | * return early without loading the comments. |
20 | 20 | */ |
21 | -if ( post_password_required() ) { |
|
21 | +if (post_password_required()) { |
|
22 | 22 | return; |
23 | 23 | } |
24 | 24 | ?> |
@@ -27,13 +27,13 @@ discard block |
||
27 | 27 | |
28 | 28 | <?php |
29 | 29 | // You can start editing here -- including this comment! |
30 | - if ( have_comments() ) : ?> |
|
30 | + if (have_comments()) : ?> |
|
31 | 31 | <h2 class="comments-title"> |
32 | 32 | <?php |
33 | 33 | $comments_number = get_comments_number(); |
34 | - if ( '1' === $comments_number ) { |
|
34 | + if ('1' === $comments_number) { |
|
35 | 35 | /* translators: %s: post title */ |
36 | - printf( esc_html_x( 'One Reply to “%s”', 'comments title', 'strip' ), get_the_title() ); |
|
36 | + printf(esc_html_x('One Reply to “%s”', 'comments title', 'strip'), get_the_title()); |
|
37 | 37 | } else { |
38 | 38 | printf( |
39 | 39 | esc_attr( |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | 'strip' |
47 | 47 | ) |
48 | 48 | ), |
49 | - esc_html( number_format_i18n( $comments_number ) ), |
|
49 | + esc_html(number_format_i18n($comments_number)), |
|
50 | 50 | get_the_title() |
51 | 51 | ); |
52 | 52 | } |
@@ -55,26 +55,26 @@ discard block |
||
55 | 55 | |
56 | 56 | <ol class="comment-list"> |
57 | 57 | <?php |
58 | - wp_list_comments( array( |
|
58 | + wp_list_comments(array( |
|
59 | 59 | 'avatar_size' => 96, |
60 | 60 | 'style' => 'ol', |
61 | 61 | 'short_ping' => true, |
62 | - 'reply_text' => __( 'Reply', 'strip' ), |
|
63 | - ) ); |
|
62 | + 'reply_text' => __('Reply', 'strip'), |
|
63 | + )); |
|
64 | 64 | ?> |
65 | 65 | </ol> |
66 | 66 | |
67 | - <?php the_comments_pagination( array( |
|
68 | - 'prev_text' => '<span class="screen-reader-text">' . __( 'Previous', 'strip' ) . '</span>', |
|
69 | - 'next_text' => '<span class="screen-reader-text">' . __( 'Next', 'strip' ) . '</span>', |
|
70 | - ) ); |
|
67 | + <?php the_comments_pagination(array( |
|
68 | + 'prev_text' => '<span class="screen-reader-text">' . __('Previous', 'strip') . '</span>', |
|
69 | + 'next_text' => '<span class="screen-reader-text">' . __('Next', 'strip') . '</span>', |
|
70 | + )); |
|
71 | 71 | |
72 | 72 | endif; // Check for have_comments(). |
73 | 73 | |
74 | 74 | // If comments are closed and there are comments, let's leave a little note, shall we? |
75 | - if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : ?> |
|
75 | + if ( ! comments_open() && get_comments_number() && post_type_supports(get_post_type(), 'comments')) : ?> |
|
76 | 76 | |
77 | - <p class="no-comments"><?php esc_html_e( 'Comments are closed.', 'strip' ); ?></p> |
|
77 | + <p class="no-comments"><?php esc_html_e('Comments are closed.', 'strip'); ?></p> |
|
78 | 78 | <?php |
79 | 79 | endif; |
80 | 80 |
@@ -14,25 +14,25 @@ discard block |
||
14 | 14 | <main id="main" class="site-main" role="main"> |
15 | 15 | <div class="wrap"> |
16 | 16 | <?php |
17 | - if ( have_posts() ) : ?> |
|
17 | + if (have_posts()) : ?> |
|
18 | 18 | |
19 | 19 | <header class="page-header"> |
20 | 20 | <h1 class="page-title"> |
21 | 21 | <?php |
22 | - if ( is_author() && get_the_author_meta( 'description' ) ) { |
|
22 | + if (is_author() && get_the_author_meta('description')) { |
|
23 | 23 | echo '<div class="author-index shorter">'; |
24 | - get_template_part( 'inc/author','box' ); |
|
24 | + get_template_part('inc/author', 'box'); |
|
25 | 25 | echo '</div>'; |
26 | 26 | } else { |
27 | - the_archive_title( '<h1 class="page-title">', '</h1>' ); |
|
28 | - the_archive_description( '<div class="taxonomy-description">', '</div>' ); |
|
27 | + the_archive_title('<h1 class="page-title">', '</h1>'); |
|
28 | + the_archive_description('<div class="taxonomy-description">', '</div>'); |
|
29 | 29 | } |
30 | 30 | ?> |
31 | 31 | </h1> |
32 | 32 | </header><!-- .page-header --> |
33 | 33 | |
34 | 34 | <?php /* Start the Loop */ ?> |
35 | - <?php while ( have_posts() ) : the_post(); ?> |
|
35 | + <?php while (have_posts()) : the_post(); ?> |
|
36 | 36 | |
37 | 37 | <?php |
38 | 38 | |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | * If you want to overload this in a child theme then include a file |
42 | 42 | * called content-___.php (where ___ is the Post Format name) and that will be used instead. |
43 | 43 | */ |
44 | - get_template_part( 'content', get_post_format() ); |
|
44 | + get_template_part('content', get_post_format()); |
|
45 | 45 | ?> |
46 | 46 | |
47 | 47 | <?php endwhile; ?> |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | |
51 | 51 | <?php else : ?> |
52 | 52 | |
53 | - <?php get_template_part( 'no-results', 'archive' ); ?> |
|
53 | + <?php get_template_part('no-results', 'archive'); ?> |
|
54 | 54 | |
55 | 55 | <?php endif; ?> |
56 | 56 |
@@ -11,15 +11,15 @@ discard block |
||
11 | 11 | ?><!DOCTYPE html> |
12 | 12 | <html <?php language_attributes(); ?> class="no-js"> |
13 | 13 | <head> |
14 | -<meta charset="<?php bloginfo( 'charset' ); ?>"> |
|
14 | +<meta charset="<?php bloginfo('charset'); ?>"> |
|
15 | 15 | <meta http-equiv="X-UA-Compatible" content="IE=Edge"> |
16 | 16 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
17 | -<meta name="description" content="<?php if ( is_single() ) { |
|
18 | - single_post_title( '', true ); |
|
17 | +<meta name="description" content="<?php if (is_single()) { |
|
18 | + single_post_title('', true); |
|
19 | 19 | } else { |
20 | - bloginfo( 'name' ); |
|
20 | + bloginfo('name'); |
|
21 | 21 | echo ' - '; |
22 | - bloginfo( 'description' ); |
|
22 | + bloginfo('description'); |
|
23 | 23 | } |
24 | 24 | ?>" /> |
25 | 25 | <link rel="profile" href="http://gmpg.org/xfn/11"> |
@@ -35,18 +35,18 @@ discard block |
||
35 | 35 | <header id="branding" class="site-header" role="banner"> |
36 | 36 | |
37 | 37 | <div class="site-branding"> |
38 | - <?php get_template_part( '/assets/inline-logo.svg' ); // remove or replace by your own custom svg logo. ?> |
|
39 | - <?php get_template_part( 'template-parts/header/header', 'image' ); ?> |
|
38 | + <?php get_template_part('/assets/inline-logo.svg'); // remove or replace by your own custom svg logo. ?> |
|
39 | + <?php get_template_part('template-parts/header/header', 'image'); ?> |
|
40 | 40 | <?php strip_the_custom_logo(); ?> |
41 | - <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2> |
|
41 | + <h1 class="site-title"><a href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a></h1> <h2 class="site-description"><?php bloginfo('description'); ?></h2> |
|
42 | 42 | </div><!-- .site-branding --> |
43 | 43 | |
44 | - <?php if ( has_nav_menu( 'primary' ) ) : ?> |
|
44 | + <?php if (has_nav_menu('primary')) : ?> |
|
45 | 45 | <nav id="site-navigation" class="main-navigation clear" role="navigation"> |
46 | - <button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"><?php esc_attr_e( 'discover', 'strip' ); ?></button> |
|
47 | - <div><a class="skip-link screen-reader-text" href="#content"><?php esc_attr_e( 'Skip to content', 'strip' ); ?></a></div> |
|
46 | + <button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"><?php esc_attr_e('discover', 'strip'); ?></button> |
|
47 | + <div><a class="skip-link screen-reader-text" href="#content"><?php esc_attr_e('Skip to content', 'strip'); ?></a></div> |
|
48 | 48 | |
49 | - <?php wp_nav_menu( array( 'theme_location' => 'primary', 'container_class' => 'wrap' ) ); ?> |
|
49 | + <?php wp_nav_menu(array('theme_location' => 'primary', 'container_class' => 'wrap')); ?> |
|
50 | 50 | </nav><!-- #site-navigation --> |
51 | 51 | <?php endif; ?> |
52 | 52 |
@@ -10,22 +10,22 @@ discard block |
||
10 | 10 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
11 | 11 | <div class="entry-wrap wrap clear"> |
12 | 12 | |
13 | -<?php if ( '' !== get_the_post_thumbnail() ) : |
|
14 | - the_post_thumbnail( 'strip-featured-image' ); |
|
13 | +<?php if ('' !== get_the_post_thumbnail()) : |
|
14 | + the_post_thumbnail('strip-featured-image'); |
|
15 | 15 | endif; ?> |
16 | 16 | |
17 | 17 | <header class="entry-header"> |
18 | 18 | <?php |
19 | - $categories_list = get_the_category_list( __( ', ', 'strip' ) ); |
|
19 | + $categories_list = get_the_category_list(__(', ', 'strip')); |
|
20 | 20 | |
21 | - if ( ! is_single() ) : |
|
22 | - the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); |
|
21 | + if ( ! is_single()) : |
|
22 | + the_title('<h1 class="entry-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h1>'); |
|
23 | 23 | else : |
24 | - the_title( '<h1 class="entry-title">', '</h1>' ); |
|
24 | + the_title('<h1 class="entry-title">', '</h1>'); |
|
25 | 25 | endif; ?> |
26 | 26 | |
27 | 27 | <div class="entry-content clear"> |
28 | - <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'strip' ) ); ?> |
|
28 | + <?php the_content(__('Continue reading <span class="meta-nav">→</span>', 'strip')); ?> |
|
29 | 29 | |
30 | 30 | </div><!-- .entry-content --> |
31 | 31 | </header><!-- .entry-header --> |
@@ -33,16 +33,16 @@ discard block |
||
33 | 33 | <footer class="entry-meta"> |
34 | 34 | <?php strip_entry_meta(); ?> |
35 | 35 | |
36 | - <span class="entry-format"><a href="<?php echo esc_url( get_post_format_link( 'gallery' ) ); ?>" title="<?php echo esc_attr( sprintf( __( 'All %s posts', 'strip' ), get_post_format_string( 'gallery' ) ) ); ?>"><?php echo esc_html( get_post_format_string( 'gallery' ) ); ?></a></span> |
|
36 | + <span class="entry-format"><a href="<?php echo esc_url(get_post_format_link('gallery')); ?>" title="<?php echo esc_attr(sprintf(__('All %s posts', 'strip'), get_post_format_string('gallery'))); ?>"><?php echo esc_html(get_post_format_string('gallery')); ?></a></span> |
|
37 | 37 | |
38 | - <?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?> |
|
38 | + <?php edit_post_link(__('Edit', 'strip'), '<span class="edit-link">', '</span>'); ?> |
|
39 | 39 | </footer><!-- .entry-meta --> |
40 | 40 | |
41 | - <?php if ( has_excerpt() ) : ?> |
|
41 | + <?php if (has_excerpt()) : ?> |
|
42 | 42 | <div class="entry-summary"> |
43 | - <?php do_action( 'strip_formatted_posts_excerpt_before' ); ?> |
|
43 | + <?php do_action('strip_formatted_posts_excerpt_before'); ?> |
|
44 | 44 | <?php the_excerpt(); ?> |
45 | - <?php do_action( 'strip_formatted_posts_excerpt_after' ); ?> |
|
45 | + <?php do_action('strip_formatted_posts_excerpt_after'); ?> |
|
46 | 46 | </div><!-- .entry-caption --> |
47 | 47 | <?php endif; ?> |
48 | 48 |
@@ -11,18 +11,18 @@ |
||
11 | 11 | <article id="post-<?php the_ID(); ?>" > |
12 | 12 | <div class="wrap"> |
13 | 13 | <?php |
14 | - if ( '' !== get_the_post_thumbnail() ) : |
|
15 | - the_post_thumbnail( 'strip-featured-image' ); |
|
14 | + if ('' !== get_the_post_thumbnail()) : |
|
15 | + the_post_thumbnail('strip-featured-image'); |
|
16 | 16 | endif; |
17 | 17 | ?> |
18 | 18 | <header class="entry-header"> |
19 | - <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?> |
|
19 | + <?php the_title('<h1 class="entry-title">', '</h1>'); ?> |
|
20 | 20 | </header><!-- .entry-header --> |
21 | 21 | |
22 | 22 | <footer class="entry-meta"> |
23 | 23 | <?php strip_entry_meta(); ?> |
24 | 24 | |
25 | - <?php edit_post_link( __( 'Edit', 'strip' ), '<span class="edit-link">', '</span>' ); ?> |
|
25 | + <?php edit_post_link(__('Edit', 'strip'), '<span class="edit-link">', '</span>'); ?> |
|
26 | 26 | </footer><!-- .entry-meta --> |
27 | 27 | |
28 | 28 | <div class="entry-content clear"> |