@@ -13,9 +13,9 @@ discard block |
||
13 | 13 | |
14 | 14 | <?php lsx_content_top(); ?> |
15 | 15 | |
16 | - <?php while ( have_posts() ) : the_post(); ?> |
|
16 | + <?php while (have_posts()) : the_post(); ?> |
|
17 | 17 | |
18 | - <?php get_template_part( 'content', 'page' ); ?> |
|
18 | + <?php get_template_part('content', 'page'); ?> |
|
19 | 19 | |
20 | 20 | <?php endwhile; // end of the loop. ?> |
21 | 21 | |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | |
24 | 24 | <?php |
25 | 25 | // If comments are open or we have at least one comment, load up the comment template |
26 | - if ( comments_open() || '0' != get_comments_number() ) : |
|
26 | + if (comments_open() || '0' != get_comments_number()) : |
|
27 | 27 | comments_template(); |
28 | 28 | endif; |
29 | 29 | ?> |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly |
|
2 | +if ( ! defined('ABSPATH')) return; // Exit if accessed directly |
|
3 | 3 | |
4 | 4 | /** |
5 | 5 | * lsx Comment Walker |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | $GLOBALS['comment_depth'] = $depth; |
30 | 30 | $GLOBALS['comment'] = $comment; |
31 | 31 | |
32 | - if (!empty($args['callback'])) { |
|
32 | + if ( ! empty($args['callback'])) { |
|
33 | 33 | call_user_func($args['callback'], $comment, $args, $depth); |
34 | 34 | return; |
35 | 35 | }?> |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | } |
41 | 41 | |
42 | 42 | function end_el(&$output, $comment, $depth = 0, $args = array()) { |
43 | - if (!empty($args['end-callback'])) { |
|
43 | + if ( ! empty($args['end-callback'])) { |
|
44 | 44 | call_user_func($args['end-callback'], $comment, $args, $depth); |
45 | 45 | return; |
46 | 46 | } |
@@ -56,8 +56,8 @@ discard block |
||
56 | 56 | } |
57 | 57 | add_filter('get_avatar', 'lsx_get_avatar'); |
58 | 58 | |
59 | -add_action( 'admin_bar_menu', function() { remove_filter( 'get_avatar','lsx_get_avatar' ); }, 0 ); |
|
60 | -add_action( 'wp_after_admin_bar_render', function() { add_filter( 'get_avatar','lsx_get_avatar' ); } ); |
|
59 | +add_action('admin_bar_menu', function() { remove_filter('get_avatar', 'lsx_get_avatar'); }, 0); |
|
60 | +add_action('wp_after_admin_bar_render', function() { add_filter('get_avatar', 'lsx_get_avatar'); } ); |
|
61 | 61 | |
62 | 62 | /** |
63 | 63 | * Comment Form Field Filter |
@@ -66,13 +66,13 @@ discard block |
||
66 | 66 | * @subpackage layout |
67 | 67 | */ |
68 | 68 | function lsx_comment_form_fields_filter($fields) { |
69 | - foreach($fields as &$field){ |
|
70 | - if(stristr('class=', $field)){ |
|
69 | + foreach ($fields as &$field) { |
|
70 | + if (stristr('class=', $field)) { |
|
71 | 71 | $field = str_replace('class="', 'class="form-control ', $field); |
72 | - }else{ |
|
72 | + } else { |
|
73 | 73 | $field = str_replace('<input', '<input class="form-control" ', $field); |
74 | 74 | } |
75 | 75 | } |
76 | 76 | return $fields; |
77 | 77 | } |
78 | -add_filter( 'comment_form_default_fields', 'lsx_comment_form_fields_filter'); |
|
78 | +add_filter('comment_form_default_fields', 'lsx_comment_form_fields_filter'); |
@@ -7,42 +7,42 @@ discard block |
||
7 | 7 | <?php lsx_entry_before(); ?> |
8 | 8 | |
9 | 9 | <?php |
10 | - if ( has_post_thumbnail() ) { |
|
10 | + if (has_post_thumbnail()) { |
|
11 | 11 | $thumb_class = 'has-thumb'; |
12 | 12 | } else { |
13 | 13 | $thumb_class = 'no-thumb'; |
14 | 14 | } |
15 | 15 | |
16 | - if ( ! is_singular() ) { |
|
17 | - $blog_layout = apply_filters( 'lsx_blog_layout', 'default' ); |
|
16 | + if ( ! is_singular()) { |
|
17 | + $blog_layout = apply_filters('lsx_blog_layout', 'default'); |
|
18 | 18 | } else { |
19 | 19 | $blog_layout = 'default'; |
20 | 20 | } |
21 | 21 | |
22 | - if ( 'list' === $blog_layout ) { |
|
22 | + if ('list' === $blog_layout) { |
|
23 | 23 | $image_class = 'hidden-sm hidden-md hidden-ls'; |
24 | 24 | } else { |
25 | 25 | $image_class = ''; |
26 | 26 | } |
27 | 27 | |
28 | - $thumbnail_id = get_post_thumbnail_id( get_the_ID() ); |
|
29 | - $image_arr = wp_get_attachment_image_src( $thumbnail_id, 'lsx-single-thumbnail' ); |
|
28 | + $thumbnail_id = get_post_thumbnail_id(get_the_ID()); |
|
29 | + $image_arr = wp_get_attachment_image_src($thumbnail_id, 'lsx-single-thumbnail'); |
|
30 | 30 | |
31 | - if ( is_array( $image_arr ) ) { |
|
31 | + if (is_array($image_arr)) { |
|
32 | 32 | $image_src = $image_arr[0]; |
33 | 33 | } |
34 | 34 | ?> |
35 | 35 | |
36 | -<article id="post-<?php the_ID(); ?>" <?php post_class( $thumb_class ); ?>> |
|
36 | +<article id="post-<?php the_ID(); ?>" <?php post_class($thumb_class); ?>> |
|
37 | 37 | <?php lsx_entry_top(); ?> |
38 | 38 | |
39 | 39 | <div class="entry-layout"> |
40 | 40 | <div class="entry-layout-content entry-layout-content-<?php echo has_post_thumbnail() ? '67' : '100'; ?>"> |
41 | 41 | <header class="entry-header"> |
42 | - <?php if ( has_post_thumbnail() ) : ?> |
|
43 | - <div class="entry-image <?php echo esc_attr( $image_class ); ?>"> |
|
42 | + <?php if (has_post_thumbnail()) : ?> |
|
43 | + <div class="entry-image <?php echo esc_attr($image_class); ?>"> |
|
44 | 44 | <a class="thumbnail" href="<?php the_permalink(); ?>"> |
45 | - <?php lsx_thumbnail( 'lsx-single-thumbnail' ); ?> |
|
45 | + <?php lsx_thumbnail('lsx-single-thumbnail'); ?> |
|
46 | 46 | </a> |
47 | 47 | </div> |
48 | 48 | <?php endif; ?> |
@@ -50,37 +50,37 @@ discard block |
||
50 | 50 | <?php |
51 | 51 | $format = get_post_format(); |
52 | 52 | |
53 | - if ( false === $format ) { |
|
53 | + if (false === $format) { |
|
54 | 54 | $format = 'standard'; |
55 | - $show_on_front = get_option( 'show_on_front', 'posts' ); |
|
55 | + $show_on_front = get_option('show_on_front', 'posts'); |
|
56 | 56 | |
57 | - if ( 'page' == $show_on_front ) { |
|
58 | - $archive_link = get_permalink( get_option( 'page_for_posts' ) ); |
|
57 | + if ('page' == $show_on_front) { |
|
58 | + $archive_link = get_permalink(get_option('page_for_posts')); |
|
59 | 59 | } else { |
60 | 60 | $archive_link = home_url(); |
61 | 61 | } |
62 | 62 | } else { |
63 | - $archive_link = get_post_format_link( $format ); |
|
63 | + $archive_link = get_post_format_link($format); |
|
64 | 64 | } |
65 | 65 | |
66 | - $format = lsx_translate_format_to_fontawesome( $format ); |
|
66 | + $format = lsx_translate_format_to_fontawesome($format); |
|
67 | 67 | ?> |
68 | 68 | |
69 | 69 | <h1 class="entry-title"> |
70 | - <?php if ( has_post_thumbnail() ) : ?> |
|
71 | - <a href="<?php echo esc_url( $archive_link ) ?>" class="format-link has-thumb fa fa-<?php echo esc_attr( $format ) ?>"></a> |
|
70 | + <?php if (has_post_thumbnail()) : ?> |
|
71 | + <a href="<?php echo esc_url($archive_link) ?>" class="format-link has-thumb fa fa-<?php echo esc_attr($format) ?>"></a> |
|
72 | 72 | <?php else : ?> |
73 | - <a href="<?php echo esc_url( $archive_link ) ?>" class="format-link fa fa-<?php echo esc_attr( $format ) ?>"></a> |
|
73 | + <a href="<?php echo esc_url($archive_link) ?>" class="format-link fa fa-<?php echo esc_attr($format) ?>"></a> |
|
74 | 74 | <?php endif; ?> |
75 | 75 | |
76 | - <?php if ( has_post_format( array('link') ) ) : ?> |
|
77 | - <a href="<?php echo esc_url( lsx_get_my_url() ); ?>" rel="bookmark"><?php the_title(); ?> <span class="fa fa-external-link"></span></a> |
|
76 | + <?php if (has_post_format(array('link'))) : ?> |
|
77 | + <a href="<?php echo esc_url(lsx_get_my_url()); ?>" rel="bookmark"><?php the_title(); ?> <span class="fa fa-external-link"></span></a> |
|
78 | 78 | <?php else : ?> |
79 | 79 | <a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a> |
80 | 80 | <?php endif; ?> |
81 | 81 | |
82 | - <?php if ( is_sticky() ) : ?> |
|
83 | - <span class="label label-default label-sticky"><?php esc_html_e( 'Featured', 'lsx' ); ?></span> |
|
82 | + <?php if (is_sticky()) : ?> |
|
83 | + <span class="label label-default label-sticky"><?php esc_html_e('Featured', 'lsx'); ?></span> |
|
84 | 84 | <?php endif; ?> |
85 | 85 | </h1> |
86 | 86 | |
@@ -89,13 +89,13 @@ discard block |
||
89 | 89 | </div><!-- .entry-meta --> |
90 | 90 | </header><!-- .entry-header --> |
91 | 91 | |
92 | - <?php if ( ! is_singular() && ! has_post_format( array( 'video', 'audio', 'quote', 'link' ) ) && ! apply_filters( 'lsx_blog_force_content_on_list', false ) ) : // Only display Excerpts for Search and Archives ?> |
|
92 | + <?php if ( ! is_singular() && ! has_post_format(array('video', 'audio', 'quote', 'link')) && ! apply_filters('lsx_blog_force_content_on_list', false)) : // Only display Excerpts for Search and Archives ?> |
|
93 | 93 | <div class="entry-summary"> |
94 | 94 | <?php the_excerpt(); ?> |
95 | 95 | </div><!-- .entry-summary --> |
96 | - <?php elseif ( has_post_format( array('link') ) ) : ?> |
|
96 | + <?php elseif (has_post_format(array('link'))) : ?> |
|
97 | 97 | |
98 | - <?php elseif ( apply_filters( 'lsx_blog_force_content_on_list', false ) ) : ?> |
|
98 | + <?php elseif (apply_filters('lsx_blog_force_content_on_list', false)) : ?> |
|
99 | 99 | <div class="entry-content"> |
100 | 100 | <?php the_content(); ?> |
101 | 101 | </div><!-- .entry-content --> |
@@ -104,12 +104,12 @@ discard block |
||
104 | 104 | <?php |
105 | 105 | the_content(); |
106 | 106 | |
107 | - wp_link_pages( array( |
|
107 | + wp_link_pages(array( |
|
108 | 108 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
109 | 109 | 'after' => '</div></div>', |
110 | 110 | 'link_before' => '<span>', |
111 | 111 | 'link_after' => '</span>' |
112 | - ) ); |
|
112 | + )); |
|
113 | 113 | ?> |
114 | 114 | </div><!-- .entry-content --> |
115 | 115 | <?php endif; ?> |
@@ -119,19 +119,19 @@ discard block |
||
119 | 119 | <?php |
120 | 120 | $comments_number = get_comments_number(); |
121 | 121 | |
122 | - if ( has_tag() || ( comments_open() && ! empty( $comments_number ) ) ) : |
|
122 | + if (has_tag() || (comments_open() && ! empty($comments_number))) : |
|
123 | 123 | ?> |
124 | 124 | |
125 | 125 | <div class="post-tags-wrapper"> |
126 | 126 | <?php lsx_content_post_tags(); ?> |
127 | 127 | |
128 | - <?php if ( comments_open() && ! empty( $comments_number ) ) : ?> |
|
128 | + <?php if (comments_open() && ! empty($comments_number)) : ?> |
|
129 | 129 | <div class="post-comments"> |
130 | 130 | <a href="<?php the_permalink() ?>#comments"> |
131 | 131 | <?php |
132 | 132 | printf( |
133 | - esc_html( _n( 'One Comment', '%1$s Comments', $comments_number, 'lsx' ) ), |
|
134 | - esc_html( number_format_i18n( $comments_number ) ) |
|
133 | + esc_html(_n('One Comment', '%1$s Comments', $comments_number, 'lsx')), |
|
134 | + esc_html(number_format_i18n($comments_number)) |
|
135 | 135 | ); |
136 | 136 | ?> |
137 | 137 | </a> |
@@ -144,10 +144,10 @@ discard block |
||
144 | 144 | ?> |
145 | 145 | </div> |
146 | 146 | |
147 | - <?php if ( has_post_thumbnail() ) : ?> |
|
147 | + <?php if (has_post_thumbnail()) : ?> |
|
148 | 148 | <div class="entry-image hidden hidden-xs"> |
149 | - <a class="thumbnail" href="<?php the_permalink(); ?>" style="background-image:url(<?php echo esc_url( $image_src ); ?>);"> |
|
150 | - <?php lsx_thumbnail( 'lsx-single-thumbnail' ); ?> |
|
149 | + <a class="thumbnail" href="<?php the_permalink(); ?>" style="background-image:url(<?php echo esc_url($image_src); ?>);"> |
|
150 | + <?php lsx_thumbnail('lsx-single-thumbnail'); ?> |
|
151 | 151 | </a> |
152 | 152 | </div> |
153 | 153 | <?php endif; ?> |
@@ -157,9 +157,9 @@ discard block |
||
157 | 157 | |
158 | 158 | <div class="clearfix"></div> |
159 | 159 | |
160 | - <?php edit_post_link( esc_html__( 'Edit', 'lsx' ), '<span class="edit-link">', '</span>' ); ?> |
|
160 | + <?php edit_post_link(esc_html__('Edit', 'lsx'), '<span class="edit-link">', '</span>'); ?> |
|
161 | 161 | |
162 | - <?php if ( ! is_singular() && ! is_single() ) : // Display full-width divider on Archives ?> |
|
162 | + <?php if ( ! is_singular() && ! is_single()) : // Display full-width divider on Archives ?> |
|
163 | 163 | <div class="lsx-breaker"></div> |
164 | 164 | <?php endif; ?> |
165 | 165 | </article> |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly |
|
2 | +if ( ! defined('ABSPATH')) return; // Exit if accessed directly |
|
3 | 3 | |
4 | 4 | /** |
5 | 5 | * Yoast Breadcrumbs on Twitter Bootstrap |
@@ -10,21 +10,21 @@ discard block |
||
10 | 10 | * @param string $sep Your custom separator |
11 | 11 | */ |
12 | 12 | function lsx_breadcrumbs() { |
13 | - if (!function_exists('yoast_breadcrumb') && !function_exists('woocommerce_breadcrumb')) { |
|
13 | + if ( ! function_exists('yoast_breadcrumb') && ! function_exists('woocommerce_breadcrumb')) { |
|
14 | 14 | return null; |
15 | 15 | } |
16 | 16 | |
17 | 17 | $show_on_front = get_option('show_on_front'); |
18 | - if ( ('posts' == $show_on_front && is_home()) || ('page' == $show_on_front && is_front_page()) ) { |
|
18 | + if (('posts' == $show_on_front && is_home()) || ('page' == $show_on_front && is_front_page())) { |
|
19 | 19 | return; |
20 | 20 | } |
21 | 21 | |
22 | - if(function_exists('woocommerce_breadcrumb')){ |
|
22 | + if (function_exists('woocommerce_breadcrumb')) { |
|
23 | 23 | ob_start(); |
24 | 24 | woocommerce_breadcrumb(); |
25 | 25 | $output = ob_get_clean(); |
26 | 26 | $output = str_replace('woocommerce-breadcrumb', 'woocommerce-breadcrumb breadcrumbs-container', $output); |
27 | - }elseif(function_exists('yoast_breadcrumb')){ |
|
27 | + }elseif (function_exists('yoast_breadcrumb')) { |
|
28 | 28 | // Default Yoast Breadcrumbs Separator |
29 | 29 | $old_sep = '\»\;'; |
30 | 30 | |
@@ -42,11 +42,11 @@ discard block |
||
42 | 42 | $output = '<div class="breadcrumbs-container">' . $output . '</div>'; |
43 | 43 | } |
44 | 44 | |
45 | - $output = apply_filters('lsx_breadcrumbs',$output); |
|
45 | + $output = apply_filters('lsx_breadcrumbs', $output); |
|
46 | 46 | |
47 | - echo wp_kses_post( $output ); |
|
47 | + echo wp_kses_post($output); |
|
48 | 48 | } |
49 | -add_action( 'lsx_content_top', 'lsx_breadcrumbs', 100 ); |
|
49 | +add_action('lsx_content_top', 'lsx_breadcrumbs', 100); |
|
50 | 50 | |
51 | 51 | /** |
52 | 52 | * Replaces the seperator with a blank space. |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | function lsx_breadcrumbs_seperator_filter($seperator) { |
56 | 56 | return ''; |
57 | 57 | } |
58 | -add_filter( 'wpseo_breadcrumb_separator', 'lsx_breadcrumbs_seperator_filter' ); |
|
58 | +add_filter('wpseo_breadcrumb_separator', 'lsx_breadcrumbs_seperator_filter'); |
|
59 | 59 | |
60 | 60 | /** |
61 | 61 | * Custom template tags for this theme. |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | * |
64 | 64 | * @package lsx |
65 | 65 | */ |
66 | -if ( ! function_exists( 'lsx_site_title' ) ) : |
|
66 | +if ( ! function_exists('lsx_site_title')) : |
|
67 | 67 | /** |
68 | 68 | * Displays logo when applicable |
69 | 69 | * |
@@ -72,8 +72,8 @@ discard block |
||
72 | 72 | function lsx_site_title() { |
73 | 73 | ?> |
74 | 74 | <div class="site-branding"> |
75 | - <h1 class="site-title"><a title="<?php bloginfo( 'name' ); ?>" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> |
|
76 | - <p class="site-description"><?php bloginfo( 'description' ); ?></p> |
|
75 | + <h1 class="site-title"><a title="<?php bloginfo('name'); ?>" href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a></h1> |
|
76 | + <p class="site-description"><?php bloginfo('description'); ?></p> |
|
77 | 77 | </div> |
78 | 78 | <?php |
79 | 79 | } |
@@ -82,9 +82,9 @@ discard block |
||
82 | 82 | /** |
83 | 83 | * Add customisable post meta. |
84 | 84 | */ |
85 | -if ( ! function_exists( 'lsx_post_meta' ) ) { |
|
85 | +if ( ! function_exists('lsx_post_meta')) { |
|
86 | 86 | function lsx_post_meta() { |
87 | - if ( ( is_page() && ! ( is_home() || is_front_page() ) ) && ! is_page_template( 'page-templates/template-blog.php' ) ) { |
|
87 | + if ((is_page() && ! (is_home() || is_front_page())) && ! is_page_template('page-templates/template-blog.php')) { |
|
88 | 88 | return; |
89 | 89 | } |
90 | 90 | ?> |
@@ -99,94 +99,94 @@ discard block |
||
99 | 99 | /** |
100 | 100 | * Add customisable post meta: post date |
101 | 101 | */ |
102 | -if ( ! function_exists( 'lsx_post_meta_date' ) ) { |
|
102 | +if ( ! function_exists('lsx_post_meta_date')) { |
|
103 | 103 | function lsx_post_meta_date() { |
104 | 104 | $time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>'; |
105 | 105 | |
106 | - $time_string = sprintf( $time_string, |
|
107 | - esc_attr( get_the_date( 'c' ) ), |
|
106 | + $time_string = sprintf($time_string, |
|
107 | + esc_attr(get_the_date('c')), |
|
108 | 108 | get_the_date(), |
109 | - esc_attr( get_the_modified_date( 'c' ) ), |
|
109 | + esc_attr(get_the_modified_date('c')), |
|
110 | 110 | get_the_modified_date() |
111 | 111 | ); |
112 | 112 | |
113 | - printf( '<span class="post-meta-time"><span>%1$s</span> <a href="%2$s" rel="bookmark">%3$s</a></span>', |
|
114 | - esc_html_x( 'Posted on:', 'Used before publish date.', 'lsx' ), |
|
115 | - esc_url( get_permalink() ), |
|
116 | - wp_kses_post( $time_string ) |
|
113 | + printf('<span class="post-meta-time"><span>%1$s</span> <a href="%2$s" rel="bookmark">%3$s</a></span>', |
|
114 | + esc_html_x('Posted on:', 'Used before publish date.', 'lsx'), |
|
115 | + esc_url(get_permalink()), |
|
116 | + wp_kses_post($time_string) |
|
117 | 117 | ); |
118 | 118 | } |
119 | 119 | } |
120 | -add_action( 'lsx_content_post_meta', 'lsx_post_meta_date', 10 ); |
|
120 | +add_action('lsx_content_post_meta', 'lsx_post_meta_date', 10); |
|
121 | 121 | |
122 | 122 | /** |
123 | 123 | * Add customisable post meta: post author |
124 | 124 | */ |
125 | -if ( ! function_exists( 'lsx_post_meta_author' ) ) { |
|
125 | +if ( ! function_exists('lsx_post_meta_author')) { |
|
126 | 126 | function lsx_post_meta_author() { |
127 | 127 | $author = get_the_author(); |
128 | - $author_url = esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); |
|
128 | + $author_url = esc_url(get_author_posts_url(get_the_author_meta('ID'))); |
|
129 | 129 | |
130 | - if ( empty( $author ) ) { |
|
130 | + if (empty($author)) { |
|
131 | 131 | global $post; |
132 | 132 | |
133 | - $author = get_user_by( 'ID', $post->post_author ); |
|
133 | + $author = get_user_by('ID', $post->post_author); |
|
134 | 134 | $author = $author->display_name; |
135 | - $author_url = esc_url( get_author_posts_url( $post->post_author ) ); |
|
135 | + $author_url = esc_url(get_author_posts_url($post->post_author)); |
|
136 | 136 | } |
137 | 137 | |
138 | - printf( '<span class="post-meta-author"><span>%1$s</span> <a href="%2$s">%3$s</a></span>', |
|
139 | - esc_html_x( 'Posted by:', 'Used before post author name.', 'lsx' ), |
|
138 | + printf('<span class="post-meta-author"><span>%1$s</span> <a href="%2$s">%3$s</a></span>', |
|
139 | + esc_html_x('Posted by:', 'Used before post author name.', 'lsx'), |
|
140 | 140 | $author_url, |
141 | 141 | $author |
142 | 142 | ); |
143 | 143 | } |
144 | 144 | } |
145 | -add_action( 'lsx_content_post_meta', 'lsx_post_meta_author', 20 ); |
|
145 | +add_action('lsx_content_post_meta', 'lsx_post_meta_author', 20); |
|
146 | 146 | |
147 | 147 | /** |
148 | 148 | * Add customisable post meta: post category(ies) |
149 | 149 | */ |
150 | -if ( ! function_exists( 'lsx_post_meta_category' ) ) { |
|
150 | +if ( ! function_exists('lsx_post_meta_category')) { |
|
151 | 151 | function lsx_post_meta_category() { |
152 | - $post_categories = wp_get_post_categories( get_the_ID() ); |
|
152 | + $post_categories = wp_get_post_categories(get_the_ID()); |
|
153 | 153 | $cats = array(); |
154 | 154 | |
155 | - foreach( $post_categories as $c ) { |
|
156 | - $cat = get_category( $c ); |
|
157 | - $cats[] = '<a href="' . get_category_link( $cat->term_id ) . '" title="' . sprintf( esc_html__( 'View all posts in %s' , 'lsx' ), $cat->name ) . '" ' . '>' . $cat->name . '</a>'; |
|
155 | + foreach ($post_categories as $c) { |
|
156 | + $cat = get_category($c); |
|
157 | + $cats[] = '<a href="' . get_category_link($cat->term_id) . '" title="' . sprintf(esc_html__('View all posts in %s', 'lsx'), $cat->name) . '" ' . '>' . $cat->name . '</a>'; |
|
158 | 158 | } |
159 | 159 | |
160 | - if ( ! empty( $cats ) ) { |
|
160 | + if ( ! empty($cats)) { |
|
161 | 161 | ?> |
162 | - <span class="post-meta-categories"><span><?php esc_html_e( 'Posted in:', 'lsx' ); ?></span> <?php echo wp_kses_post( implode( ', ', $cats ) ); ?></span> |
|
162 | + <span class="post-meta-categories"><span><?php esc_html_e('Posted in:', 'lsx'); ?></span> <?php echo wp_kses_post(implode(', ', $cats)); ?></span> |
|
163 | 163 | <?php |
164 | 164 | } |
165 | 165 | } |
166 | 166 | } |
167 | -add_action( 'lsx_content_post_meta', 'lsx_post_meta_category', 30 ); |
|
167 | +add_action('lsx_content_post_meta', 'lsx_post_meta_category', 30); |
|
168 | 168 | |
169 | 169 | /** |
170 | 170 | * Add customisable post meta: post tag(s) |
171 | 171 | */ |
172 | -if ( ! function_exists( 'lsx_post_tags' ) ) { |
|
172 | +if ( ! function_exists('lsx_post_tags')) { |
|
173 | 173 | function lsx_post_tags() { |
174 | - if ( has_tag() ) : |
|
174 | + if (has_tag()) : |
|
175 | 175 | ?> |
176 | 176 | <div class="post-tags"> |
177 | - <span><?php esc_html_e( 'Tagged as:', 'lsx' ); ?></span> <?php echo wp_kses_post( get_the_tag_list( '' ) ); ?> |
|
177 | + <span><?php esc_html_e('Tagged as:', 'lsx'); ?></span> <?php echo wp_kses_post(get_the_tag_list('')); ?> |
|
178 | 178 | </div> |
179 | 179 | <?php |
180 | 180 | endif; |
181 | 181 | } |
182 | 182 | } |
183 | -add_action( 'lsx_content_post_tags', 'lsx_post_tags', 10 ); |
|
183 | +add_action('lsx_content_post_tags', 'lsx_post_tags', 10); |
|
184 | 184 | |
185 | 185 | /** |
186 | 186 | * Add customisable post info: related posts |
187 | 187 | */ |
188 | 188 | function lsx_related_posts() { |
189 | - if ( is_singular( 'post' ) && class_exists( 'Jetpack_RelatedPosts' ) ) { |
|
189 | + if (is_singular('post') && class_exists('Jetpack_RelatedPosts')) { |
|
190 | 190 | ?> |
191 | 191 | <div class="row row-related-posts"> |
192 | 192 | <div class="col-md-12"> |
@@ -196,15 +196,15 @@ discard block |
||
196 | 196 | <?php |
197 | 197 | } |
198 | 198 | } |
199 | -add_action( 'lsx_entry_bottom', 'lsx_related_posts', 10 ); |
|
199 | +add_action('lsx_entry_bottom', 'lsx_related_posts', 10); |
|
200 | 200 | |
201 | 201 | /** |
202 | 202 | * Translate post format to Font Awesome class |
203 | 203 | */ |
204 | 204 | |
205 | -if ( ! function_exists( 'lsx_translate_format_to_fontawesome' ) ) { |
|
206 | - function lsx_translate_format_to_fontawesome( $format ) { |
|
207 | - switch ( $format ) { |
|
205 | +if ( ! function_exists('lsx_translate_format_to_fontawesome')) { |
|
206 | + function lsx_translate_format_to_fontawesome($format) { |
|
207 | + switch ($format) { |
|
208 | 208 | case 'image': |
209 | 209 | $format = 'camera'; |
210 | 210 | break; |
@@ -249,45 +249,45 @@ discard block |
||
249 | 249 | * to be added/modified where necessary. |
250 | 250 | */ |
251 | 251 | |
252 | -if ( ! function_exists( 'lsx_portfolio_meta' ) ) { |
|
252 | +if ( ! function_exists('lsx_portfolio_meta')) { |
|
253 | 253 | function lsx_portfolio_meta() { |
254 | 254 | ?> |
255 | 255 | <div id="portfolio-meta" class="portfolio-meta info-box-sticky info-box sticky-wrapper"> |
256 | 256 | <?php |
257 | - $client = get_post_meta(get_the_ID(),'lsx-client',true); |
|
258 | - if(false != $client){ ?> |
|
257 | + $client = get_post_meta(get_the_ID(), 'lsx-client', true); |
|
258 | + if (false != $client) { ?> |
|
259 | 259 | <div class="portfolio-client"> |
260 | - <span><span class="fa fa-user"></span><?php esc_html_e( 'Client','lsx' ); ?></span> |
|
261 | - <span><?php echo esc_html( $client ); ?></span> |
|
260 | + <span><span class="fa fa-user"></span><?php esc_html_e('Client', 'lsx'); ?></span> |
|
261 | + <span><?php echo esc_html($client); ?></span> |
|
262 | 262 | </div> |
263 | 263 | <?php } ?> |
264 | 264 | |
265 | 265 | <?php |
266 | - $portfolio_type = get_the_term_list( get_the_ID(), 'jetpack-portfolio-type', '', ', ', '' ); |
|
266 | + $portfolio_type = get_the_term_list(get_the_ID(), 'jetpack-portfolio-type', '', ', ', ''); |
|
267 | 267 | |
268 | - if($portfolio_type){ |
|
268 | + if ($portfolio_type) { |
|
269 | 269 | ?> |
270 | 270 | <div class="portfolio-industry"> |
271 | - <span><span class="fa fa-folder-open"></span><?php esc_html_e( 'Industry', 'lsx' ); ?></span> |
|
272 | - <?php echo wp_kses_post( $portfolio_type ); ?> |
|
271 | + <span><span class="fa fa-folder-open"></span><?php esc_html_e('Industry', 'lsx'); ?></span> |
|
272 | + <?php echo wp_kses_post($portfolio_type); ?> |
|
273 | 273 | </div> |
274 | 274 | <?php } ?> |
275 | 275 | |
276 | 276 | <?php |
277 | - $services = get_the_term_list( get_the_ID(), 'jetpack-portfolio-tag', '', ', ', '' ); |
|
278 | - if(false != $services){ ?> |
|
277 | + $services = get_the_term_list(get_the_ID(), 'jetpack-portfolio-tag', '', ', ', ''); |
|
278 | + if (false != $services) { ?> |
|
279 | 279 | <div class="portfolio-services"> |
280 | - <span><span class="fa fa-cog"></span><?php esc_html_e( 'Services', 'lsx' ); ?></span> |
|
281 | - <?php echo wp_kses_post( $services ); ?> |
|
280 | + <span><span class="fa fa-cog"></span><?php esc_html_e('Services', 'lsx'); ?></span> |
|
281 | + <?php echo wp_kses_post($services); ?> |
|
282 | 282 | </div> |
283 | 283 | <?php } ?> |
284 | 284 | |
285 | 285 | <?php |
286 | - $website = esc_url( get_post_meta(get_the_ID(),'lsx-website',true) ); |
|
287 | - if(false != $website){ ?> |
|
286 | + $website = esc_url(get_post_meta(get_the_ID(), 'lsx-website', true)); |
|
287 | + if (false != $website) { ?> |
|
288 | 288 | <div class="portfolio-website"> |
289 | - <span><span class="fa fa-link"></span><?php esc_html_e( 'Website', 'lsx' ); ?></span> |
|
290 | - <a target="_blank" href="<?php echo esc_url( $website ); ?>"><?php echo esc_html( $website ) ?></a> |
|
289 | + <span><span class="fa fa-link"></span><?php esc_html_e('Website', 'lsx'); ?></span> |
|
290 | + <a target="_blank" href="<?php echo esc_url($website); ?>"><?php echo esc_html($website) ?></a> |
|
291 | 291 | </div> |
292 | 292 | <?php } ?> |
293 | 293 | |
@@ -301,29 +301,29 @@ discard block |
||
301 | 301 | * |
302 | 302 | */ |
303 | 303 | |
304 | -if ( ! function_exists( 'lsx_portfolio_gallery' ) ) { |
|
304 | +if ( ! function_exists('lsx_portfolio_gallery')) { |
|
305 | 305 | function lsx_portfolio_gallery() { |
306 | 306 | |
307 | - $media = get_attached_media( 'image' ); |
|
307 | + $media = get_attached_media('image'); |
|
308 | 308 | $media_array = array(); |
309 | 309 | $post_thumbnail_id = get_post_thumbnail_id(get_the_ID()); |
310 | 310 | |
311 | - if(!empty($media)){ |
|
312 | - foreach($media as $media_item){ |
|
313 | - if($post_thumbnail_id != $media_item->ID) { |
|
311 | + if ( ! empty($media)) { |
|
312 | + foreach ($media as $media_item) { |
|
313 | + if ($post_thumbnail_id != $media_item->ID) { |
|
314 | 314 | $media_array[] = $media_item->ID; |
315 | 315 | } |
316 | 316 | } |
317 | 317 | |
318 | - if(!empty($media_array)){ |
|
319 | - echo wp_kses_post( gallery_shortcode( array( 'size' => 'full', 'ids' => implode( ',', $media_array ) ) ) ); |
|
318 | + if ( ! empty($media_array)) { |
|
319 | + echo wp_kses_post(gallery_shortcode(array('size' => 'full', 'ids' => implode(',', $media_array)))); |
|
320 | 320 | } |
321 | 321 | } |
322 | 322 | |
323 | 323 | } |
324 | 324 | } |
325 | 325 | |
326 | -if ( ! function_exists( 'lsx_paging_nav' ) ) : |
|
326 | +if ( ! function_exists('lsx_paging_nav')) : |
|
327 | 327 | /** |
328 | 328 | * Display navigation to next/previous set of posts when applicable. |
329 | 329 | * |
@@ -331,33 +331,33 @@ discard block |
||
331 | 331 | */ |
332 | 332 | function lsx_paging_nav() { |
333 | 333 | // Don't print empty markup if there's only one page. |
334 | - if ( $GLOBALS['wp_query']->max_num_pages < 2 ) { |
|
334 | + if ($GLOBALS['wp_query']->max_num_pages < 2) { |
|
335 | 335 | return; |
336 | 336 | } |
337 | 337 | |
338 | - if(current_theme_supports('infinite-scroll') && class_exists('The_Neverending_Home_Page')){ |
|
338 | + if (current_theme_supports('infinite-scroll') && class_exists('The_Neverending_Home_Page')) { |
|
339 | 339 | return true; |
340 | - }elseif(function_exists('wp_pagenavi')){ |
|
340 | + }elseif (function_exists('wp_pagenavi')) { |
|
341 | 341 | wp_pagenavi(); |
342 | - }else{ |
|
342 | + } else { |
|
343 | 343 | |
344 | 344 | $labels = array( |
345 | - 'next' => '<span class="meta-nav">←</span> '.esc_html__( 'Older posts', 'lsx' ), |
|
346 | - 'previous' => esc_html__( 'Newer posts', 'lsx' ).' <span class="meta-nav">→</span>', |
|
347 | - 'title' => esc_html__( 'Posts navigation', 'lsx' ) |
|
345 | + 'next' => '<span class="meta-nav">←</span> ' . esc_html__('Older posts', 'lsx'), |
|
346 | + 'previous' => esc_html__('Newer posts', 'lsx') . ' <span class="meta-nav">→</span>', |
|
347 | + 'title' => esc_html__('Posts navigation', 'lsx') |
|
348 | 348 | ); |
349 | - $labels = apply_filters('lsx_post_navigation_labels',$labels); |
|
349 | + $labels = apply_filters('lsx_post_navigation_labels', $labels); |
|
350 | 350 | ?> |
351 | 351 | <nav class="navigation paging-navigation" role="navigation"> |
352 | 352 | <div class="lsx-breaker"></div> |
353 | - <h1 class="screen-reader-text"><?php echo esc_html( $labels['title'] ); ?></h1> |
|
353 | + <h1 class="screen-reader-text"><?php echo esc_html($labels['title']); ?></h1> |
|
354 | 354 | <div class="nav-links"> |
355 | - <?php if ( get_next_posts_link() ) : ?> |
|
356 | - <div class="nav-previous"><?php next_posts_link( $labels['next'] ); ?></div> |
|
355 | + <?php if (get_next_posts_link()) : ?> |
|
356 | + <div class="nav-previous"><?php next_posts_link($labels['next']); ?></div> |
|
357 | 357 | <?php endif; ?> |
358 | 358 | |
359 | - <?php if ( get_previous_posts_link() ) : ?> |
|
360 | - <div class="nav-next"><?php previous_posts_link( $labels['previous'] ); ?></div> |
|
359 | + <?php if (get_previous_posts_link()) : ?> |
|
360 | + <div class="nav-next"><?php previous_posts_link($labels['previous']); ?></div> |
|
361 | 361 | <?php endif; ?> |
362 | 362 | |
363 | 363 | <div class="clearfix"></div> |
@@ -368,7 +368,7 @@ discard block |
||
368 | 368 | } |
369 | 369 | endif; |
370 | 370 | |
371 | -if ( ! function_exists( 'lsx_post_nav' ) ) : |
|
371 | +if ( ! function_exists('lsx_post_nav')) : |
|
372 | 372 | /** |
373 | 373 | * Display navigation to next/previous post when applicable. |
374 | 374 | * |
@@ -376,10 +376,10 @@ discard block |
||
376 | 376 | */ |
377 | 377 | function lsx_post_nav() { |
378 | 378 | // Don't print empty markup if there's nowhere to navigate. |
379 | - $previous = ( is_attachment() ) ? get_post( get_post()->post_parent ) : get_adjacent_post( false, '', true ); |
|
380 | - $next = get_adjacent_post( false, '', false ); |
|
379 | + $previous = (is_attachment()) ? get_post(get_post()->post_parent) : get_adjacent_post(false, '', true); |
|
380 | + $next = get_adjacent_post(false, '', false); |
|
381 | 381 | |
382 | - if ( ! $next && ! $previous ) { |
|
382 | + if ( ! $next && ! $previous) { |
|
383 | 383 | return; |
384 | 384 | } |
385 | 385 | ?> |
@@ -389,14 +389,14 @@ discard block |
||
389 | 389 | <div class="nav-links pager row"> |
390 | 390 | <div class="previous col-md-6"> |
391 | 391 | <?php |
392 | - $previous_post = get_previous_post_link( '%link', '<p class="nav-links-description">'._x( 'Previous Post', 'Previous post link', 'lsx' ).'</p><h3>%title</h3>' ); |
|
393 | - echo wp_kses_post( $previous_post ); |
|
392 | + $previous_post = get_previous_post_link('%link', '<p class="nav-links-description">' . _x('Previous Post', 'Previous post link', 'lsx') . '</p><h3>%title</h3>'); |
|
393 | + echo wp_kses_post($previous_post); |
|
394 | 394 | ?> |
395 | 395 | </div> |
396 | 396 | <div class="next col-md-6"> |
397 | 397 | <?php |
398 | - $next_post = get_next_post_link( '%link', '<p class="nav-links-description">'._x( 'Next Post', 'Next post link', 'lsx' ).'</p><h3>%title</h3>' ); |
|
399 | - echo wp_kses_post( $next_post ); |
|
398 | + $next_post = get_next_post_link('%link', '<p class="nav-links-description">' . _x('Next Post', 'Next post link', 'lsx') . '</p><h3>%title</h3>'); |
|
399 | + echo wp_kses_post($next_post); |
|
400 | 400 | ?> |
401 | 401 | </div> |
402 | 402 | </div><!-- .nav-links --> |
@@ -412,16 +412,16 @@ discard block |
||
412 | 412 | * @subpackage template-tags |
413 | 413 | * @category header |
414 | 414 | */ |
415 | -if(!function_exists('lsx_site_identity')){ |
|
416 | - function lsx_site_identity(){ |
|
415 | +if ( ! function_exists('lsx_site_identity')) { |
|
416 | + function lsx_site_identity() { |
|
417 | 417 | |
418 | - if ( function_exists('has_custom_logo') && has_custom_logo() ) { |
|
418 | + if (function_exists('has_custom_logo') && has_custom_logo()) { |
|
419 | 419 | the_custom_logo(); |
420 | - }elseif ( function_exists( 'jetpack_has_site_logo' ) && jetpack_has_site_logo() ) { |
|
420 | + }elseif (function_exists('jetpack_has_site_logo') && jetpack_has_site_logo()) { |
|
421 | 421 | jetpack_the_site_logo(); |
422 | - }else{ |
|
422 | + } else { |
|
423 | 423 | // shouldn't show both together.. its just strange |
424 | - if(true == get_theme_mod('site_logo_header_text',1)){ |
|
424 | + if (true == get_theme_mod('site_logo_header_text', 1)) { |
|
425 | 425 | lsx_site_title(); |
426 | 426 | } |
427 | 427 | } |
@@ -436,29 +436,29 @@ discard block |
||
436 | 436 | * @subpackage template-tags |
437 | 437 | * @category navigation |
438 | 438 | */ |
439 | -if(!function_exists('lsx_navbar_header')){ |
|
440 | - function lsx_navbar_header(){ ?> |
|
439 | +if ( ! function_exists('lsx_navbar_header')) { |
|
440 | + function lsx_navbar_header() { ?> |
|
441 | 441 | <div class="navbar-header" itemscope itemtype="http://schema.org/WebPage"> |
442 | 442 | |
443 | 443 | <?php |
444 | - $nav_menu = get_theme_mod('nav_menu_locations',false); |
|
444 | + $nav_menu = get_theme_mod('nav_menu_locations', false); |
|
445 | 445 | //print_r(get_nav_menu_locations()); |
446 | 446 | |
447 | - if(false != $nav_menu && isset($nav_menu['primary']) && 0 != $nav_menu['primary']){ ?> |
|
447 | + if (false != $nav_menu && isset($nav_menu['primary']) && 0 != $nav_menu['primary']) { ?> |
|
448 | 448 | <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".primary-navbar"> |
449 | - <span class="sr-only"><?php esc_html_e( 'Toggle navigation', 'lsx' ); ?></span> |
|
449 | + <span class="sr-only"><?php esc_html_e('Toggle navigation', 'lsx'); ?></span> |
|
450 | 450 | <span class="icon-bar"></span> |
451 | 451 | <span class="icon-bar"></span> |
452 | 452 | <span class="icon-bar"></span> |
453 | 453 | </button> |
454 | - <span class="mobile-menu-title"><?php esc_html_e( 'Menu', 'lsx' ); ?></span> |
|
454 | + <span class="mobile-menu-title"><?php esc_html_e('Menu', 'lsx'); ?></span> |
|
455 | 455 | <?php } ?> |
456 | 456 | <?php lsx_site_identity(); ?> |
457 | 457 | </div> |
458 | 458 | <?php } |
459 | 459 | } |
460 | 460 | //the if statement is for backwards compatability with previous versions of the theme. |
461 | -add_action('lsx_nav_before','lsx_navbar_header'); |
|
461 | +add_action('lsx_nav_before', 'lsx_navbar_header'); |
|
462 | 462 | |
463 | 463 | /** |
464 | 464 | * Outputs the Nav Menu |
@@ -467,16 +467,16 @@ discard block |
||
467 | 467 | * @subpackage template-tags |
468 | 468 | * @category navigation |
469 | 469 | */ |
470 | -if(!function_exists('lsx_nav_menu')){ |
|
471 | - function lsx_nav_menu(){ |
|
472 | - $nav_menu = get_theme_mod('nav_menu_locations',false); |
|
470 | +if ( ! function_exists('lsx_nav_menu')) { |
|
471 | + function lsx_nav_menu() { |
|
472 | + $nav_menu = get_theme_mod('nav_menu_locations', false); |
|
473 | 473 | |
474 | 474 | //print_r(get_nav_menu_locations()); |
475 | 475 | |
476 | - if(false != $nav_menu && isset($nav_menu['primary']) && 0 != $nav_menu['primary']){ ?> |
|
476 | + if (false != $nav_menu && isset($nav_menu['primary']) && 0 != $nav_menu['primary']) { ?> |
|
477 | 477 | <nav class="primary-navbar collapse navbar-collapse"> |
478 | 478 | <?php |
479 | - wp_nav_menu( array( |
|
479 | + wp_nav_menu(array( |
|
480 | 480 | 'theme_location' => 'primary', |
481 | 481 | 'menu' => $nav_menu['primary'], |
482 | 482 | 'depth' => 3, |
@@ -497,7 +497,7 @@ discard block |
||
497 | 497 | * @subpackage template-tags |
498 | 498 | * @category sitemap |
499 | 499 | */ |
500 | -function lsx_sitemap_pages(){ |
|
500 | +function lsx_sitemap_pages() { |
|
501 | 501 | $page_args = array( |
502 | 502 | 'post_type' => 'page', |
503 | 503 | 'posts_per_page'=> 99, |
@@ -505,13 +505,13 @@ discard block |
||
505 | 505 | 'post_type' => 'page', |
506 | 506 | ); |
507 | 507 | $pages = new WP_Query($page_args); |
508 | - if($pages->have_posts()){ |
|
508 | + if ($pages->have_posts()) { |
|
509 | 509 | |
510 | - echo '<h2>' . esc_html__( 'Pages', 'lsx' ) . '</h2>'; |
|
510 | + echo '<h2>' . esc_html__('Pages', 'lsx') . '</h2>'; |
|
511 | 511 | |
512 | 512 | echo '<ul>'; |
513 | - while($pages->have_posts()){ $pages->the_post(); |
|
514 | - echo '<li class="page_item page-item-' . esc_attr( get_the_ID() ) . '"><a href="' . esc_url( get_permalink() ) . '" title="">' . get_the_title() . '</a></li>'; |
|
513 | + while ($pages->have_posts()) { $pages->the_post(); |
|
514 | + echo '<li class="page_item page-item-' . esc_attr(get_the_ID()) . '"><a href="' . esc_url(get_permalink()) . '" title="">' . get_the_title() . '</a></li>'; |
|
515 | 515 | } |
516 | 516 | echo '</ul>'; |
517 | 517 | |
@@ -526,13 +526,13 @@ discard block |
||
526 | 526 | * @subpackage template-tags |
527 | 527 | * @category sitemap |
528 | 528 | */ |
529 | -function lsx_sitemap_custom_post_type(){ |
|
529 | +function lsx_sitemap_custom_post_type() { |
|
530 | 530 | $args = array( |
531 | 531 | 'public' => true, |
532 | 532 | '_builtin' => false |
533 | 533 | ); |
534 | - $post_types = get_post_types($args , 'names'); |
|
535 | - foreach($post_types as $post_type){ |
|
534 | + $post_types = get_post_types($args, 'names'); |
|
535 | + foreach ($post_types as $post_type) { |
|
536 | 536 | |
537 | 537 | $post_type_args = array( |
538 | 538 | 'post_type' => 'page', |
@@ -543,19 +543,19 @@ discard block |
||
543 | 543 | $post_type_items = new WP_Query($post_type_args); |
544 | 544 | |
545 | 545 | $post_type_object = get_post_type_object($post_type); |
546 | - if(null != $post_type_object){ |
|
546 | + if (null != $post_type_object) { |
|
547 | 547 | $title = $post_type_object->labels->name; |
548 | - }else{ |
|
548 | + } else { |
|
549 | 549 | $title = ucwords($post_type); |
550 | 550 | } |
551 | 551 | |
552 | - if($post_type_items->have_posts()){ |
|
552 | + if ($post_type_items->have_posts()) { |
|
553 | 553 | |
554 | - echo '<h2>' . esc_html( $title ) . '</h2>'; |
|
554 | + echo '<h2>' . esc_html($title) . '</h2>'; |
|
555 | 555 | |
556 | 556 | echo '<ul>'; |
557 | - while($post_type_items->have_posts()){ $post_type_items->the_post(); |
|
558 | - echo '<li class="' . esc_attr( get_post_type() ) . '_item ' . esc_attr( get_post_type() ) . '-item-' . esc_attr( get_the_ID() ) . '"><a href="' . esc_url( get_permalink() ) . '" title="">' . get_the_title() . '</a></li>'; |
|
557 | + while ($post_type_items->have_posts()) { $post_type_items->the_post(); |
|
558 | + echo '<li class="' . esc_attr(get_post_type()) . '_item ' . esc_attr(get_post_type()) . '-item-' . esc_attr(get_the_ID()) . '"><a href="' . esc_url(get_permalink()) . '" title="">' . get_the_title() . '</a></li>'; |
|
559 | 559 | } |
560 | 560 | echo '</ul>'; |
561 | 561 | |
@@ -571,20 +571,20 @@ discard block |
||
571 | 571 | * @subpackage template-tags |
572 | 572 | * @category sitemap |
573 | 573 | */ |
574 | -function lsx_sitemap_taxonomy_clouds(){ |
|
574 | +function lsx_sitemap_taxonomy_clouds() { |
|
575 | 575 | |
576 | - $taxonomy_args = array( |
|
576 | + $taxonomy_args = array( |
|
577 | 577 | 'public' => true, |
578 | 578 | '_builtin' => false |
579 | 579 | ); |
580 | 580 | $taxonomies = get_taxonomies($taxonomy_args); |
581 | - if(!empty($taxonomies)){ |
|
582 | - foreach($taxonomies as $taxonomy_id => $taxonomy) { |
|
581 | + if ( ! empty($taxonomies)) { |
|
582 | + foreach ($taxonomies as $taxonomy_id => $taxonomy) { |
|
583 | 583 | |
584 | - $tag_cloud = wp_tag_cloud(array('taxonomy'=>$taxonomy_id,'echo'=>false)); |
|
585 | - if(null != $tag_cloud){ |
|
586 | - echo '<h2>' . esc_html( $taxonomy ) . '</h2>'; |
|
587 | - echo '<aside id="' . esc_attr( $taxonomy_id ) . '" class="widget widget_' . esc_attr( $taxonomy_id ) . '">' . esc_html( $tag_cloud ) . '</aside>'; |
|
584 | + $tag_cloud = wp_tag_cloud(array('taxonomy'=>$taxonomy_id, 'echo'=>false)); |
|
585 | + if (null != $tag_cloud) { |
|
586 | + echo '<h2>' . esc_html($taxonomy) . '</h2>'; |
|
587 | + echo '<aside id="' . esc_attr($taxonomy_id) . '" class="widget widget_' . esc_attr($taxonomy_id) . '">' . esc_html($tag_cloud) . '</aside>'; |
|
588 | 588 | } |
589 | 589 | } |
590 | 590 | } |
@@ -597,15 +597,15 @@ discard block |
||
597 | 597 | * @subpackage hooks |
598 | 598 | * @category forms |
599 | 599 | */ |
600 | -add_action( 'lsx_footer_before', 'lsx_footer_subscription_cta', 10 ); |
|
600 | +add_action('lsx_footer_before', 'lsx_footer_subscription_cta', 10); |
|
601 | 601 | function lsx_footer_subscription_cta() { |
602 | - if(!function_exists('lsx_is_form_enabled')){ return; } |
|
602 | + if ( ! function_exists('lsx_is_form_enabled')) { return; } |
|
603 | 603 | $subscribe_form_id = lsx_is_form_enabled('subscribe'); |
604 | - if(false == $subscribe_form_id) { return; } |
|
604 | + if (false == $subscribe_form_id) { return; } |
|
605 | 605 | |
606 | 606 | //add Caldera Forms Fields Scripts |
607 | - if( defined( 'CFCORE_VER' ) ){ |
|
608 | - wp_enqueue_script( 'cf-frontend-fields', CFCORE_URL . 'assets/js/fields.min.js', array('jquery'), CFCORE_VER ); |
|
607 | + if (defined('CFCORE_VER')) { |
|
608 | + wp_enqueue_script('cf-frontend-fields', CFCORE_URL . 'assets/js/fields.min.js', array('jquery'), CFCORE_VER); |
|
609 | 609 | } |
610 | 610 | |
611 | 611 | ?> |
@@ -613,8 +613,8 @@ discard block |
||
613 | 613 | <div class="container"> |
614 | 614 | <div class="row"> |
615 | 615 | <div class="col-md-12"> |
616 | - <h2><?php esc_html_e( 'Subscribe to Our Newsletter', 'lsx' ); ?></h2> |
|
617 | - <?php echo do_shortcode( '[caldera_form id="'.$subscribe_form_id.'"]' ); ?> |
|
616 | + <h2><?php esc_html_e('Subscribe to Our Newsletter', 'lsx'); ?></h2> |
|
617 | + <?php echo do_shortcode('[caldera_form id="' . $subscribe_form_id . '"]'); ?> |
|
618 | 618 | </div> |
619 | 619 | </div> |
620 | 620 | </div> |
@@ -630,13 +630,13 @@ discard block |
||
630 | 630 | * @category menu |
631 | 631 | */ |
632 | 632 | function lsx_add_top_menu() { |
633 | - if ( has_nav_menu( 'top-menu' ) || has_nav_menu(' top-menu-left' ) ) : ?> |
|
633 | + if (has_nav_menu('top-menu') || has_nav_menu(' top-menu-left')) : ?> |
|
634 | 634 | <div id="top-menu" class="<?php lsx_top_menu_classes(); ?>"> |
635 | 635 | <div class="container"> |
636 | - <?php if ( has_nav_menu( 'top-menu' ) ) : ?> |
|
636 | + <?php if (has_nav_menu('top-menu')) : ?> |
|
637 | 637 | <nav class="top-menu"> |
638 | 638 | <?php |
639 | - wp_nav_menu( array( |
|
639 | + wp_nav_menu(array( |
|
640 | 640 | 'theme_location' => 'top-menu', |
641 | 641 | 'walker' => new Lsx_Bootstrap_Navwalker()) |
642 | 642 | ); |
@@ -644,10 +644,10 @@ discard block |
||
644 | 644 | </nav> |
645 | 645 | <?php endif; ?> |
646 | 646 | |
647 | - <?php if ( has_nav_menu( 'top-menu-left' ) ) : ?> |
|
647 | + <?php if (has_nav_menu('top-menu-left')) : ?> |
|
648 | 648 | <nav class="top-menu pull-left"> |
649 | 649 | <?php |
650 | - wp_nav_menu( array( |
|
650 | + wp_nav_menu(array( |
|
651 | 651 | 'theme_location' => 'top-menu-left', |
652 | 652 | 'walker' => new Lsx_Bootstrap_Navwalker()) |
653 | 653 | ); |
@@ -658,7 +658,7 @@ discard block |
||
658 | 658 | </div> |
659 | 659 | <?php endif; |
660 | 660 | } |
661 | -add_action( 'lsx_header_top', 'lsx_add_top_menu' ); |
|
661 | +add_action('lsx_header_top', 'lsx_add_top_menu'); |
|
662 | 662 | |
663 | 663 | /** |
664 | 664 | * Checks if a caldera form with your slug exists |
@@ -667,24 +667,24 @@ discard block |
||
667 | 667 | * @subpackage template-tag |
668 | 668 | * @category forms |
669 | 669 | */ |
670 | -if ( class_exists('Caldera_Forms') && !function_exists( 'lsx_is_form_enabled' ) ) { |
|
670 | +if (class_exists('Caldera_Forms') && ! function_exists('lsx_is_form_enabled')) { |
|
671 | 671 | function lsx_is_form_enabled($slug = false) { |
672 | - if(false == $slug){ return false; } |
|
672 | + if (false == $slug) { return false; } |
|
673 | 673 | |
674 | 674 | $match = false; |
675 | - $forms = get_option( '_caldera_forms' , false ); |
|
676 | - if(false !== $forms ) { |
|
677 | - foreach($forms as $form_id=>$form_maybe){ |
|
678 | - if( trim(strtolower($slug)) == strtolower($form_maybe['name']) ){ |
|
675 | + $forms = get_option('_caldera_forms', false); |
|
676 | + if (false !== $forms) { |
|
677 | + foreach ($forms as $form_id=>$form_maybe) { |
|
678 | + if (trim(strtolower($slug)) == strtolower($form_maybe['name'])) { |
|
679 | 679 | $match = $form_id; |
680 | 680 | break; |
681 | 681 | } |
682 | 682 | } |
683 | 683 | } |
684 | - if( false === $match ){ |
|
685 | - $is_form = Caldera_Forms::get_form( strtolower( $slug ) ); |
|
686 | - if( !empty( $is_form ) ){ |
|
687 | - return strtolower( $slug ); |
|
684 | + if (false === $match) { |
|
685 | + $is_form = Caldera_Forms::get_form(strtolower($slug)); |
|
686 | + if ( ! empty($is_form)) { |
|
687 | + return strtolower($slug); |
|
688 | 688 | } |
689 | 689 | } |
690 | 690 | |
@@ -700,10 +700,10 @@ discard block |
||
700 | 700 | * @category urls |
701 | 701 | */ |
702 | 702 | function lsx_get_my_url() { |
703 | - if ( ! preg_match( '/<a\s[^>]*?href=[\'"](.+?)[\'"]/is', get_the_content(), $matches ) ) |
|
703 | + if ( ! preg_match('/<a\s[^>]*?href=[\'"](.+?)[\'"]/is', get_the_content(), $matches)) |
|
704 | 704 | return false; |
705 | 705 | |
706 | - return esc_url_raw( $matches[1] ); |
|
706 | + return esc_url_raw($matches[1]); |
|
707 | 707 | } |
708 | 708 | |
709 | 709 | /** |
@@ -713,19 +713,19 @@ discard block |
||
713 | 713 | * @subpackage extras |
714 | 714 | * @category urls |
715 | 715 | */ |
716 | -function lsx_get_template_part($slug,$part) { |
|
716 | +function lsx_get_template_part($slug, $part) { |
|
717 | 717 | $template = array(); |
718 | 718 | $part = (string) $part; |
719 | - if ( '' !== $part ){ |
|
719 | + if ('' !== $part) { |
|
720 | 720 | $template = "{$slug}-{$part}.php"; |
721 | - }else{ |
|
721 | + } else { |
|
722 | 722 | $template = "{$slug}.php"; |
723 | 723 | } |
724 | - $file_path = apply_filters('lsx_content_path',false,$slug,$part); |
|
724 | + $file_path = apply_filters('lsx_content_path', false, $slug, $part); |
|
725 | 725 | |
726 | - if ( false !== $file_path && '' == locate_template( array( $template ) ) && file_exists( $file_path.$template) ) { |
|
727 | - load_template( $file_path.$template, false ); |
|
728 | - }else{ |
|
729 | - get_template_part($slug,$part); |
|
726 | + if (false !== $file_path && '' == locate_template(array($template)) && file_exists($file_path . $template)) { |
|
727 | + load_template($file_path . $template, false); |
|
728 | + } else { |
|
729 | + get_template_part($slug, $part); |
|
730 | 730 | } |
731 | 731 | } |
732 | 732 | \ No newline at end of file |
@@ -11,33 +11,33 @@ discard block |
||
11 | 11 | |
12 | 12 | <?php lsx_content_wrap_before(); ?> |
13 | 13 | |
14 | - <div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>"> |
|
14 | + <div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>"> |
|
15 | 15 | |
16 | 16 | <?php lsx_content_before(); ?> |
17 | 17 | |
18 | 18 | <main id="main" class="site-main"> |
19 | 19 | |
20 | 20 | <?php |
21 | - $layout = get_theme_mod('lsx_layout','2cr'); |
|
22 | - $layout = apply_filters( 'lsx_layout', $layout ); |
|
23 | - if('1c' === $layout){ |
|
21 | + $layout = get_theme_mod('lsx_layout', '2cr'); |
|
22 | + $layout = apply_filters('lsx_layout', $layout); |
|
23 | + if ('1c' === $layout) { |
|
24 | 24 | lsx_breadcrumbs(); |
25 | 25 | } |
26 | 26 | ?> |
27 | 27 | |
28 | 28 | <?php lsx_content_top(); ?> |
29 | 29 | |
30 | - <?php if ( have_posts() ) : ?> |
|
30 | + <?php if (have_posts()) : ?> |
|
31 | 31 | |
32 | 32 | <?php /* Start the Loop */ ?> |
33 | - <?php while ( have_posts() ) : the_post(); ?> |
|
33 | + <?php while (have_posts()) : the_post(); ?> |
|
34 | 34 | |
35 | 35 | <?php |
36 | 36 | /* Include the Post-Format-specific template for the content. |
37 | 37 | * If you want to override this in a child theme, then include a file |
38 | 38 | * called content-___.php (where ___ is the Post Format name) and that will be used instead. |
39 | 39 | */ |
40 | - get_template_part( 'content', get_post_format() ); |
|
40 | + get_template_part('content', get_post_format()); |
|
41 | 41 | ?> |
42 | 42 | |
43 | 43 | <?php endwhile; ?> |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | |
47 | 47 | <?php else : ?> |
48 | 48 | |
49 | - <?php get_template_part( 'content', 'none' ); ?> |
|
49 | + <?php get_template_part('content', 'none'); ?> |
|
50 | 50 | |
51 | 51 | <?php endif; ?> |
52 | 52 |
@@ -11,33 +11,33 @@ discard block |
||
11 | 11 | |
12 | 12 | <?php lsx_content_wrap_before(); ?> |
13 | 13 | |
14 | - <div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>"> |
|
14 | + <div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>"> |
|
15 | 15 | |
16 | 16 | <?php lsx_content_before(); ?> |
17 | 17 | |
18 | 18 | <main id="main" class="site-main"> |
19 | 19 | |
20 | 20 | <?php |
21 | - $layout = get_theme_mod('lsx_layout','2cr'); |
|
22 | - $layout = apply_filters( 'lsx_layout', $layout ); |
|
23 | - if('1c' === $layout && !is_post_type_archive('tribe_events')){ |
|
21 | + $layout = get_theme_mod('lsx_layout', '2cr'); |
|
22 | + $layout = apply_filters('lsx_layout', $layout); |
|
23 | + if ('1c' === $layout && ! is_post_type_archive('tribe_events')) { |
|
24 | 24 | lsx_breadcrumbs(); |
25 | 25 | } |
26 | 26 | ?> |
27 | 27 | |
28 | 28 | <?php lsx_content_top(); ?> |
29 | 29 | |
30 | - <?php if ( have_posts() ) : ?> |
|
30 | + <?php if (have_posts()) : ?> |
|
31 | 31 | |
32 | 32 | <?php /* Start the Loop */ ?> |
33 | - <?php while ( have_posts() ) : the_post(); ?> |
|
33 | + <?php while (have_posts()) : the_post(); ?> |
|
34 | 34 | |
35 | 35 | <?php |
36 | 36 | /* Include the Post-Format-specific template for the content. |
37 | 37 | * If you want to override this in a child theme, then include a file |
38 | 38 | * called content-___.php (where ___ is the Post Format name) and that will be used instead. |
39 | 39 | */ |
40 | - get_template_part( 'content', get_post_format() ); |
|
40 | + get_template_part('content', get_post_format()); |
|
41 | 41 | ?> |
42 | 42 | |
43 | 43 | <?php endwhile; ?> |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | |
47 | 47 | <?php else : ?> |
48 | 48 | |
49 | - <?php get_template_part( 'content', 'none' ); ?> |
|
49 | + <?php get_template_part('content', 'none'); ?> |
|
50 | 50 | |
51 | 51 | <?php endif; ?> |
52 | 52 |
@@ -9,33 +9,33 @@ discard block |
||
9 | 9 | |
10 | 10 | <?php lsx_content_wrap_before(); ?> |
11 | 11 | |
12 | - <div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>"> |
|
12 | + <div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>"> |
|
13 | 13 | |
14 | 14 | <?php lsx_content_before(); ?> |
15 | 15 | |
16 | 16 | <main id="main" class="site-main"> |
17 | 17 | |
18 | 18 | <?php |
19 | - $layout = get_theme_mod('lsx_layout','2cr'); |
|
20 | - $layout = apply_filters( 'lsx_layout', $layout ); |
|
21 | - if('1c' === $layout){ |
|
19 | + $layout = get_theme_mod('lsx_layout', '2cr'); |
|
20 | + $layout = apply_filters('lsx_layout', $layout); |
|
21 | + if ('1c' === $layout) { |
|
22 | 22 | lsx_breadcrumbs(); |
23 | 23 | } |
24 | 24 | ?> |
25 | 25 | |
26 | 26 | <?php lsx_content_top(); ?> |
27 | 27 | |
28 | - <?php if ( have_posts() ) : global $lsx_archive; $lsx_archive = 1; ?> |
|
28 | + <?php if (have_posts()) : global $lsx_archive; $lsx_archive = 1; ?> |
|
29 | 29 | |
30 | 30 | <?php /* Start the Loop */ ?> |
31 | - <?php while ( have_posts() ) : the_post(); ?> |
|
31 | + <?php while (have_posts()) : the_post(); ?> |
|
32 | 32 | |
33 | 33 | <?php |
34 | 34 | /* Include the Post-Format-specific template for the content. |
35 | 35 | * If you want to override this in a child theme, then include a file |
36 | 36 | * called content-___.php (where ___ is the Post Format name) and that will be used instead. |
37 | 37 | */ |
38 | - get_template_part( 'content', get_post_format() ); |
|
38 | + get_template_part('content', get_post_format()); |
|
39 | 39 | ?> |
40 | 40 | |
41 | 41 | <?php endwhile; ?> |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | |
45 | 45 | <?php else : ?> |
46 | 46 | |
47 | - <?php get_template_part( 'content', 'none' ); ?> |
|
47 | + <?php get_template_part('content', 'none'); ?> |
|
48 | 48 | |
49 | 49 | <?php endif; $lsx_archive = 0; ?> |
50 | 50 |
@@ -1,16 +1,16 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly |
|
2 | +if ( ! defined('ABSPATH')) return; // Exit if accessed directly |
|
3 | 3 | |
4 | 4 | /** |
5 | 5 | * Enable extra attributes (srcset, sizes) in img tag |
6 | 6 | */ |
7 | -function lsx_kses_allowed_html( $allowedtags, $context ) { |
|
7 | +function lsx_kses_allowed_html($allowedtags, $context) { |
|
8 | 8 | $allowedtags['img']['srcset'] = true; |
9 | 9 | $allowedtags['img']['sizes'] = true; |
10 | 10 | |
11 | 11 | return $allowedtags; |
12 | 12 | } |
13 | -add_filter( 'wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2 ); |
|
13 | +add_filter('wp_kses_allowed_html', 'lsx_kses_allowed_html', 10, 2); |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Add and remove body_class() classes |
@@ -19,21 +19,21 @@ discard block |
||
19 | 19 | /* |
20 | 20 | * Add the header layout class |
21 | 21 | */ |
22 | - $header_layout = get_theme_mod('lsx_header_layout','inline'); |
|
23 | - $classes[] = 'header-'.$header_layout; |
|
22 | + $header_layout = get_theme_mod('lsx_header_layout', 'inline'); |
|
23 | + $classes[] = 'header-' . $header_layout; |
|
24 | 24 | |
25 | 25 | |
26 | 26 | // Add post/page slug |
27 | - if (is_single() || is_page() && !is_front_page()) { |
|
27 | + if (is_single() || is_page() && ! is_front_page()) { |
|
28 | 28 | $classes[] = basename(get_permalink()); |
29 | 29 | } |
30 | 30 | |
31 | - if(!class_exists('Lsx_Banners')){ |
|
32 | - $post_types = array('page','post'); |
|
33 | - $post_types = apply_filters('lsx_allowed_post_type_banners',$post_types); |
|
31 | + if ( ! class_exists('Lsx_Banners')) { |
|
32 | + $post_types = array('page', 'post'); |
|
33 | + $post_types = apply_filters('lsx_allowed_post_type_banners', $post_types); |
|
34 | 34 | |
35 | - if((is_singular($post_types) && has_post_thumbnail()) |
|
36 | - || (is_singular('jetpack-portfolio'))){ |
|
35 | + if ((is_singular($post_types) && has_post_thumbnail()) |
|
36 | + || (is_singular('jetpack-portfolio'))) { |
|
37 | 37 | $classes[] = 'page-has-banner'; |
38 | 38 | } |
39 | 39 | } |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | $classes[] = 'has-top-menu'; |
43 | 43 | } |
44 | 44 | |
45 | - if ( get_theme_mod( 'lsx_preloader_content_status', '1' ) === '1' ) { |
|
45 | + if (get_theme_mod('lsx_preloader_content_status', '1') === '1') { |
|
46 | 46 | $classes[] = 'preloader-content-enable'; |
47 | 47 | } |
48 | 48 | |
@@ -66,30 +66,30 @@ discard block |
||
66 | 66 | * @param string $sep Optional separator. |
67 | 67 | * @return string The filtered title. |
68 | 68 | */ |
69 | -function lsx_wp_title( $title, $sep ) { |
|
69 | +function lsx_wp_title($title, $sep) { |
|
70 | 70 | global $page, $paged; |
71 | 71 | |
72 | - if ( is_feed() ) { |
|
72 | + if (is_feed()) { |
|
73 | 73 | return $title; |
74 | 74 | } |
75 | 75 | |
76 | 76 | // Add the blog name |
77 | - $title .= get_bloginfo( 'name' ); |
|
77 | + $title .= get_bloginfo('name'); |
|
78 | 78 | |
79 | 79 | // Add the blog description for the home/front page. |
80 | - $site_description = get_bloginfo( 'description', 'display' ); |
|
81 | - if ( $site_description && ( is_home() || is_front_page() ) ) { |
|
80 | + $site_description = get_bloginfo('description', 'display'); |
|
81 | + if ($site_description && (is_home() || is_front_page())) { |
|
82 | 82 | $title .= " $sep $site_description"; |
83 | 83 | } |
84 | 84 | |
85 | 85 | // Add a page number if necessary: |
86 | - if ( $paged >= 2 || $page >= 2 ) { |
|
87 | - $title .= " $sep " . sprintf( __( 'Page %s', 'lsx' ), max( $paged, $page ) ); |
|
86 | + if ($paged >= 2 || $page >= 2) { |
|
87 | + $title .= " $sep " . sprintf(__('Page %s', 'lsx'), max($paged, $page)); |
|
88 | 88 | } |
89 | 89 | |
90 | 90 | return $title; |
91 | 91 | } |
92 | -add_filter( 'wp_title', 'lsx_wp_title', 10, 2 ); |
|
92 | +add_filter('wp_title', 'lsx_wp_title', 10, 2); |
|
93 | 93 | |
94 | 94 | |
95 | 95 | /** |
@@ -110,12 +110,12 @@ discard block |
||
110 | 110 | function lsx_remove_self_closing_tags($input) { |
111 | 111 | return str_replace(' />', '>', $input); |
112 | 112 | } |
113 | -add_filter('get_avatar', 'lsx_remove_self_closing_tags'); // <img /> |
|
114 | -add_filter('comment_id_fields', 'lsx_remove_self_closing_tags'); // <input /> |
|
113 | +add_filter('get_avatar', 'lsx_remove_self_closing_tags'); // <img /> |
|
114 | +add_filter('comment_id_fields', 'lsx_remove_self_closing_tags'); // <input /> |
|
115 | 115 | add_filter('post_thumbnail_html', 'lsx_remove_self_closing_tags'); // <img /> |
116 | 116 | |
117 | 117 | |
118 | -if (!function_exists('lsx_get_attachment_id')) { |
|
118 | +if ( ! function_exists('lsx_get_attachment_id')) { |
|
119 | 119 | /** |
120 | 120 | * Get the Attachment ID for a given image URL. |
121 | 121 | * |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | function lsx_get_attachment_id($url) { |
127 | 127 | $dir = wp_upload_dir(); |
128 | 128 | // baseurl never has a trailing slash |
129 | - if (false === strpos($url, $dir['baseurl'].'/')) { |
|
129 | + if (false === strpos($url, $dir['baseurl'] . '/')) { |
|
130 | 130 | // URL points to a place outside of upload directory |
131 | 131 | return false; |
132 | 132 | } |
@@ -144,11 +144,11 @@ discard block |
||
144 | 144 | $query['meta_query'][0]['key'] = '_wp_attached_file'; |
145 | 145 | // query attachments |
146 | 146 | $ids = get_posts($query); |
147 | - if (!empty($ids)) { |
|
147 | + if ( ! empty($ids)) { |
|
148 | 148 | foreach ($ids as $id) { |
149 | 149 | // first entry of returned array is the URL |
150 | - $temp_url = wp_get_attachment_image_src( $id, 'full' ); |
|
151 | - if ( array_shift( $temp_url ) === $url ) { |
|
150 | + $temp_url = wp_get_attachment_image_src($id, 'full'); |
|
151 | + if (array_shift($temp_url) === $url) { |
|
152 | 152 | return $id; |
153 | 153 | } |
154 | 154 | } |
@@ -161,8 +161,8 @@ discard block |
||
161 | 161 | } |
162 | 162 | foreach ($ids as $id) { |
163 | 163 | $meta = wp_get_attachment_metadata($id); |
164 | - foreach ( $meta['sizes'] as $size => $values ) { |
|
165 | - if ( $values['file'] === $file && array_shift( wp_get_attachment_image_src( $id, $size ) ) === $url ) { |
|
164 | + foreach ($meta['sizes'] as $size => $values) { |
|
165 | + if ($values['file'] === $file && array_shift(wp_get_attachment_image_src($id, $size)) === $url) { |
|
166 | 166 | return $id; |
167 | 167 | } |
168 | 168 | } |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | */ |
188 | 188 | function lsx_is_element_empty($element) { |
189 | 189 | $element = trim($element); |
190 | - return empty($element)?false:true; |
|
190 | + return empty($element) ? false : true; |
|
191 | 191 | } |
192 | 192 | |
193 | 193 | |
@@ -198,39 +198,39 @@ discard block |
||
198 | 198 | * @subpackage extras |
199 | 199 | * @category thumbnails |
200 | 200 | */ |
201 | -function lsx_get_thumbnail($size,$image_src = false){ |
|
201 | +function lsx_get_thumbnail($size, $image_src = false) { |
|
202 | 202 | |
203 | - if(false === $image_src){ |
|
203 | + if (false === $image_src) { |
|
204 | 204 | $post_id = get_the_ID(); |
205 | - $post_thumbnail_id = get_post_thumbnail_id( $post_id ); |
|
206 | - }elseif(false != $image_src ){ |
|
207 | - if(is_numeric($image_src)){ |
|
205 | + $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
206 | + }elseif (false != $image_src) { |
|
207 | + if (is_numeric($image_src)) { |
|
208 | 208 | $post_thumbnail_id = $image_src; |
209 | - }else{ |
|
209 | + } else { |
|
210 | 210 | $post_thumbnail_id = lsx_get_attachment_id_from_src($image_src); |
211 | 211 | } |
212 | 212 | } |
213 | - $size = apply_filters('lsx_thumbnail_size',$size); |
|
213 | + $size = apply_filters('lsx_thumbnail_size', $size); |
|
214 | 214 | $img = false; |
215 | - if ( 'lsx-thumbnail-wide' === $size || 'thumbnail' === $size ) { |
|
215 | + if ('lsx-thumbnail-wide' === $size || 'thumbnail' === $size) { |
|
216 | 216 | $srcset = false; |
217 | - $img = wp_get_attachment_image_src($post_thumbnail_id,$size); |
|
217 | + $img = wp_get_attachment_image_src($post_thumbnail_id, $size); |
|
218 | 218 | $img = $img[0]; |
219 | 219 | } else { |
220 | 220 | $srcset = true; |
221 | - $img = wp_get_attachment_image_srcset($post_thumbnail_id,$size); |
|
222 | - if ( false == $img ) { |
|
221 | + $img = wp_get_attachment_image_srcset($post_thumbnail_id, $size); |
|
222 | + if (false == $img) { |
|
223 | 223 | $srcset = false; |
224 | - $img = wp_get_attachment_image_src($post_thumbnail_id,$size); |
|
224 | + $img = wp_get_attachment_image_src($post_thumbnail_id, $size); |
|
225 | 225 | $img = $img[0]; |
226 | 226 | } |
227 | 227 | } |
228 | - if ( $srcset ) { |
|
229 | - $img = '<img alt="'.get_the_title(get_the_ID()).'" class="attachment-responsive wp-post-image lsx-responsive" srcset="'.$img.'" />'; |
|
228 | + if ($srcset) { |
|
229 | + $img = '<img alt="' . get_the_title(get_the_ID()) . '" class="attachment-responsive wp-post-image lsx-responsive" srcset="' . $img . '" />'; |
|
230 | 230 | } else { |
231 | - $img = '<img alt="'.get_the_title(get_the_ID()).'" class="attachment-responsive wp-post-image lsx-responsive" src="'.$img.'" />'; |
|
231 | + $img = '<img alt="' . get_the_title(get_the_ID()) . '" class="attachment-responsive wp-post-image lsx-responsive" src="' . $img . '" />'; |
|
232 | 232 | } |
233 | - $img = apply_filters('lsx_lazyload_filter_images',$img); |
|
233 | + $img = apply_filters('lsx_lazyload_filter_images', $img); |
|
234 | 234 | return $img; |
235 | 235 | } |
236 | 236 | |
@@ -241,8 +241,8 @@ discard block |
||
241 | 241 | * @subpackage extras |
242 | 242 | * @category thumbnails |
243 | 243 | */ |
244 | -function lsx_thumbnail( $size = 'thumbnail', $image_src = false ) { |
|
245 | - echo wp_kses_post( lsx_get_thumbnail( $size, $image_src ) ); |
|
244 | +function lsx_thumbnail($size = 'thumbnail', $image_src = false) { |
|
245 | + echo wp_kses_post(lsx_get_thumbnail($size, $image_src)); |
|
246 | 246 | } |
247 | 247 | |
248 | 248 | |
@@ -252,13 +252,13 @@ discard block |
||
252 | 252 | * @subpackage extras |
253 | 253 | * @category thumbnails |
254 | 254 | */ |
255 | -function lsx_get_attachment_id_from_src( $image_src ) { |
|
256 | - $post_id = wp_cache_get( $image_src, 'lsx_get_attachment_id_from_src' ); |
|
255 | +function lsx_get_attachment_id_from_src($image_src) { |
|
256 | + $post_id = wp_cache_get($image_src, 'lsx_get_attachment_id_from_src'); |
|
257 | 257 | |
258 | - if ( false === $post_id ) { |
|
258 | + if (false === $post_id) { |
|
259 | 259 | global $wpdb; |
260 | - $post_id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src ) ); |
|
261 | - wp_cache_set( $image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600 ); |
|
260 | + $post_id = $wpdb->get_var($wpdb->prepare("SELECT ID FROM {$wpdb->posts} WHERE guid='%s' LIMIT 1", $image_src)); |
|
261 | + wp_cache_set($image_src, $post_id, 'lsx_get_attachment_id_from_src', 3600); |
|
262 | 262 | } |
263 | 263 | |
264 | 264 | return $post_id; |
@@ -272,28 +272,28 @@ discard block |
||
272 | 272 | * @subpackage extras |
273 | 273 | * @category banner |
274 | 274 | */ |
275 | -if (!function_exists('lsx_page_banner')) { |
|
275 | +if ( ! function_exists('lsx_page_banner')) { |
|
276 | 276 | function lsx_page_banner() { |
277 | 277 | |
278 | - $post_types = array('page','post'); |
|
279 | - $post_types = apply_filters('lsx_allowed_post_type_banners',$post_types); |
|
278 | + $post_types = array('page', 'post'); |
|
279 | + $post_types = apply_filters('lsx_allowed_post_type_banners', $post_types); |
|
280 | 280 | |
281 | - if ( (is_singular($post_types) && has_post_thumbnail()) |
|
282 | - || (is_singular('jetpack-portfolio')) ) { ?> |
|
281 | + if ((is_singular($post_types) && has_post_thumbnail()) |
|
282 | + || (is_singular('jetpack-portfolio'))) { ?> |
|
283 | 283 | |
284 | 284 | <?php |
285 | 285 | $bg_image = ''; |
286 | - if(has_post_thumbnail()){ |
|
287 | - $bg_image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()),'full'); |
|
286 | + if (has_post_thumbnail()) { |
|
287 | + $bg_image = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'full'); |
|
288 | 288 | $bg_image = $bg_image[0]; |
289 | 289 | } |
290 | 290 | ?> |
291 | 291 | |
292 | - <?php if ( ! empty( $bg_image ) ) : ?> |
|
292 | + <?php if ( ! empty($bg_image)) : ?> |
|
293 | 293 | |
294 | 294 | <div class="page-banner-wrap"> |
295 | 295 | <div class="page-banner"> |
296 | - <div class="page-banner-image" style="background-image:url(<?php echo esc_attr( $bg_image ); ?>);"></div> |
|
296 | + <div class="page-banner-image" style="background-image:url(<?php echo esc_attr($bg_image); ?>);"></div> |
|
297 | 297 | |
298 | 298 | <div class="container"> |
299 | 299 | <header class="page-header"> |
@@ -309,7 +309,7 @@ discard block |
||
309 | 309 | <?php } |
310 | 310 | } |
311 | 311 | } |
312 | -add_action( 'lsx_header_after', 'lsx_page_banner' ); |
|
312 | +add_action('lsx_header_after', 'lsx_page_banner'); |
|
313 | 313 | |
314 | 314 | |
315 | 315 | /** |
@@ -319,43 +319,43 @@ discard block |
||
319 | 319 | * @subpackage extras |
320 | 320 | * @category mobile |
321 | 321 | */ |
322 | -function lsx_allow_sms_protocol( $protocols ) { |
|
322 | +function lsx_allow_sms_protocol($protocols) { |
|
323 | 323 | $protocols[] = 'sms'; |
324 | 324 | return $protocols; |
325 | 325 | } |
326 | -add_filter( 'kses_allowed_protocols', 'lsx_allow_sms_protocol' ); |
|
326 | +add_filter('kses_allowed_protocols', 'lsx_allow_sms_protocol'); |
|
327 | 327 | |
328 | 328 | |
329 | 329 | /** |
330 | 330 | * Adding browser and user-agent classes to body |
331 | 331 | */ |
332 | 332 | function mv_browser_body_class($classes) { |
333 | - $http_user_agent = sanitize_text_field( wp_unslash( $_SERVER['HTTP_USER_AGENT'] ) ); |
|
334 | - $http_user_agent = ! empty( $http_user_agent ) ? $http_user_agent : ''; |
|
333 | + $http_user_agent = sanitize_text_field(wp_unslash($_SERVER['HTTP_USER_AGENT'])); |
|
334 | + $http_user_agent = ! empty($http_user_agent) ? $http_user_agent : ''; |
|
335 | 335 | |
336 | 336 | global $is_lynx, $is_gecko, $is_ie, $is_opera, $is_ns4, $is_safari, $is_chrome, $is_iphone; |
337 | - if($is_lynx) $classes[] = 'lynx'; |
|
338 | - elseif($is_gecko) $classes[] = 'gecko'; |
|
339 | - elseif($is_opera) $classes[] = 'opera'; |
|
340 | - elseif($is_ns4) $classes[] = 'ns4'; |
|
341 | - elseif($is_safari) $classes[] = 'safari'; |
|
342 | - elseif($is_chrome) $classes[] = 'chrome'; |
|
343 | - elseif($is_ie) { |
|
337 | + if ($is_lynx) $classes[] = 'lynx'; |
|
338 | + elseif ($is_gecko) $classes[] = 'gecko'; |
|
339 | + elseif ($is_opera) $classes[] = 'opera'; |
|
340 | + elseif ($is_ns4) $classes[] = 'ns4'; |
|
341 | + elseif ($is_safari) $classes[] = 'safari'; |
|
342 | + elseif ($is_chrome) $classes[] = 'chrome'; |
|
343 | + elseif ($is_ie) { |
|
344 | 344 | $classes[] = 'ie'; |
345 | - if(preg_match('/MSIE ([0-9]+)([a-zA-Z0-9.]+)/', $http_user_agent, $browser_version)) |
|
346 | - $classes[] = 'ie'.$browser_version[1]; |
|
345 | + if (preg_match('/MSIE ([0-9]+)([a-zA-Z0-9.]+)/', $http_user_agent, $browser_version)) |
|
346 | + $classes[] = 'ie' . $browser_version[1]; |
|
347 | 347 | } else $classes[] = 'unknown'; |
348 | - if($is_iphone) $classes[] = 'iphone'; |
|
349 | - if ( stristr( $http_user_agent, "mac") ) { |
|
348 | + if ($is_iphone) $classes[] = 'iphone'; |
|
349 | + if (stristr($http_user_agent, "mac")) { |
|
350 | 350 | $classes[] = 'osx'; |
351 | - } elseif ( stristr( $http_user_agent, "linux") ) { |
|
351 | + } elseif (stristr($http_user_agent, "linux")) { |
|
352 | 352 | $classes[] = 'linux'; |
353 | - } elseif ( stristr( $http_user_agent, "windows") ) { |
|
353 | + } elseif (stristr($http_user_agent, "windows")) { |
|
354 | 354 | $classes[] = 'windows'; |
355 | 355 | } |
356 | 356 | return $classes; |
357 | 357 | } |
358 | -add_filter('body_class','mv_browser_body_class'); |
|
358 | +add_filter('body_class', 'mv_browser_body_class'); |
|
359 | 359 | |
360 | 360 | |
361 | 361 | /** |
@@ -368,7 +368,7 @@ discard block |
||
368 | 368 | * @param $form Object |
369 | 369 | * @return String |
370 | 370 | */ |
371 | -function lsx_form_submit_button($button, $form){ |
|
371 | +function lsx_form_submit_button($button, $form) { |
|
372 | 372 | return "<button class='btn btn-primary' id='gform_submit_button_{$form["id"]}'><span>Submit</span></button>"; |
373 | 373 | } |
374 | 374 | add_filter("gform_submit_button", "lsx_form_submit_button", 10, 2); |
@@ -382,7 +382,7 @@ discard block |
||
382 | 382 | //return ' ... <a class="moretag" href="'. get_permalink($post->ID) . '">'.esc_html__('Continue reading','lsx').'</a>'; |
383 | 383 | return '...'; |
384 | 384 | } |
385 | -add_filter( 'excerpt_more', 'lsx_excerpt_more' ); |
|
385 | +add_filter('excerpt_more', 'lsx_excerpt_more'); |
|
386 | 386 | |
387 | 387 | |
388 | 388 | /** |
@@ -391,44 +391,44 @@ discard block |
||
391 | 391 | function lsx_the_excerpt_filter($excerpt) { |
392 | 392 | $show_full_content = has_post_format(apply_filters('lsx_the_excerpt_filter_post_types', array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio'))); |
393 | 393 | |
394 | - if (!$show_full_content) { |
|
395 | - if ('' !== $excerpt && !stristr($excerpt, 'moretag')) { |
|
396 | - $pagination = wp_link_pages( array( |
|
394 | + if ( ! $show_full_content) { |
|
395 | + if ('' !== $excerpt && ! stristr($excerpt, 'moretag')) { |
|
396 | + $pagination = wp_link_pages(array( |
|
397 | 397 | 'before' => '<div class="lsx-postnav-wrapper"><div class="lsx-postnav">', |
398 | 398 | 'after' => '</div></div>', |
399 | 399 | 'link_before' => '<span>', |
400 | 400 | 'link_after' => '</span>', |
401 | 401 | 'echo' => 0 |
402 | - ) ); |
|
402 | + )); |
|
403 | 403 | |
404 | - if ( ! empty( $pagination ) ) { |
|
404 | + if ( ! empty($pagination)) { |
|
405 | 405 | $excerpt .= $pagination; |
406 | 406 | } |
407 | 407 | else { |
408 | - $excerpt .= '<p><a class="moretag" href="'.get_permalink().'">'.esc_html__('Continue reading','lsx').'</a></p>'; |
|
408 | + $excerpt .= '<p><a class="moretag" href="' . get_permalink() . '">' . esc_html__('Continue reading', 'lsx') . '</a></p>'; |
|
409 | 409 | } |
410 | 410 | } |
411 | 411 | } |
412 | 412 | |
413 | 413 | return $excerpt; |
414 | 414 | } |
415 | -add_filter( 'the_excerpt', 'lsx_the_excerpt_filter' , 1 , 20 ); |
|
415 | +add_filter('the_excerpt', 'lsx_the_excerpt_filter', 1, 20); |
|
416 | 416 | |
417 | 417 | |
418 | 418 | /** |
419 | 419 | * Allow HTML tags in excerpt |
420 | 420 | */ |
421 | -if ( ! function_exists( 'wpse_custom_wp_trim_excerpt' ) ) { |
|
421 | +if ( ! function_exists('wpse_custom_wp_trim_excerpt')) { |
|
422 | 422 | function wpse_custom_wp_trim_excerpt($wpse_excerpt) { |
423 | 423 | global $post; |
424 | 424 | $raw_excerpt = $wpse_excerpt; |
425 | 425 | |
426 | - if ( '' == $wpse_excerpt ) { |
|
426 | + if ('' == $wpse_excerpt) { |
|
427 | 427 | $wpse_excerpt = get_the_content(''); |
428 | 428 | $show_full_content = has_post_format(array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio')); |
429 | 429 | |
430 | - if (!$show_full_content) { |
|
431 | - $wpse_excerpt = strip_shortcodes( $wpse_excerpt ); |
|
430 | + if ( ! $show_full_content) { |
|
431 | + $wpse_excerpt = strip_shortcodes($wpse_excerpt); |
|
432 | 432 | $wpse_excerpt = apply_filters('the_content', $wpse_excerpt); |
433 | 433 | $wpse_excerpt = str_replace(']]>', ']]>', $wpse_excerpt); |
434 | 434 | $wpse_excerpt = strip_tags($wpse_excerpt, '<blockquote>,<p>,<br>,<b>,<strong>,<i>,<u>,<ul>,<li>,<span>,<div>'); |
@@ -456,12 +456,12 @@ discard block |
||
456 | 456 | $wpse_excerpt = trim(force_balance_tags($excerpt_output)); |
457 | 457 | |
458 | 458 | if ($has_more) { |
459 | - $excerpt_end = '<a class="moretag" href="'.get_permalink().'">'.esc_html__('More','lsx').'</a>'; |
|
459 | + $excerpt_end = '<a class="moretag" href="' . get_permalink() . '">' . esc_html__('More', 'lsx') . '</a>'; |
|
460 | 460 | $excerpt_end = apply_filters('excerpt_more', ' ' . $excerpt_end); |
461 | 461 | |
462 | 462 | $pos = strrpos($wpse_excerpt, '</'); |
463 | 463 | |
464 | - if ( false !== $pos ) { |
|
464 | + if (false !== $pos) { |
|
465 | 465 | // Inside last HTML tag |
466 | 466 | $wpse_excerpt = substr_replace($wpse_excerpt, $excerpt_end, $pos, 0); /* Add read more next to last word */ |
467 | 467 | } else { |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | * @package lsx |
6 | 6 | */ |
7 | -if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly |
|
7 | +if ( ! defined('ABSPATH')) return; // Exit if accessed directly |
|
8 | 8 | |
9 | 9 | define('LSX_VERSION', '1.8.6'); |
10 | 10 | |
@@ -19,22 +19,22 @@ discard block |
||
19 | 19 | require get_template_directory() . '/inc/comment-walker.php'; |
20 | 20 | require get_template_directory() . '/inc/jetpack.php'; |
21 | 21 | require get_template_directory() . '/inc/lazyload.php'; |
22 | -if(class_exists('BuddyPress')){ |
|
22 | +if (class_exists('BuddyPress')) { |
|
23 | 23 | require get_template_directory() . '/inc/buddypress.php'; |
24 | 24 | } |
25 | -if(class_exists('WooCommerce')){ |
|
25 | +if (class_exists('WooCommerce')) { |
|
26 | 26 | require get_template_directory() . '/inc/woocommerce.php'; |
27 | 27 | } |
28 | -if(class_exists('WP_Job_Manager')){ |
|
28 | +if (class_exists('WP_Job_Manager')) { |
|
29 | 29 | require get_template_directory() . '/inc/wp-job-manager.php'; |
30 | 30 | } |
31 | -if(class_exists('Tribe__Events__Main')){ |
|
31 | +if (class_exists('Tribe__Events__Main')) { |
|
32 | 32 | require get_template_directory() . '/inc/the-events-calendar.php'; |
33 | 33 | } |
34 | 34 | require get_template_directory() . '/inc/template-tags.php'; |
35 | 35 | require get_template_directory() . '/inc/extras.php'; |
36 | 36 | require get_template_directory() . '/inc/wp-bootstrap-navwalker.php'; |
37 | -if(class_exists('Sensei_WC')){ |
|
37 | +if (class_exists('Sensei_WC')) { |
|
38 | 38 | require get_template_directory() . '/inc/sensei.php'; |
39 | 39 | } |
40 | 40 | require get_template_directory() . '/inc/welcome.php'; |
@@ -47,10 +47,10 @@ discard block |
||
47 | 47 | * @category customizer |
48 | 48 | * @return $lsx_controls array() |
49 | 49 | */ |
50 | -function lsx_customizer_core_controls( $lsx_controls ) { |
|
50 | +function lsx_customizer_core_controls($lsx_controls) { |
|
51 | 51 | $lsx_controls['sections']['lsx-core'] = array( |
52 | - 'title' => esc_html__( 'Core Settings', 'lsx' ), |
|
53 | - 'description' => esc_html__( 'Change the core settings.', 'lsx' ), |
|
52 | + 'title' => esc_html__('Core Settings', 'lsx'), |
|
53 | + 'description' => esc_html__('Change the core settings.', 'lsx'), |
|
54 | 54 | 'priority' => 21 |
55 | 55 | ); |
56 | 56 | |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | ); |
62 | 62 | |
63 | 63 | $lsx_controls['fields']['lsx_lazyload_status'] = array( |
64 | - 'label' => esc_html__( 'Lazy Loading Images', 'lsx' ), |
|
64 | + 'label' => esc_html__('Lazy Loading Images', 'lsx'), |
|
65 | 65 | 'section' => 'lsx-core', |
66 | 66 | 'type' => 'checkbox', |
67 | 67 | ); |
@@ -73,14 +73,14 @@ discard block |
||
73 | 73 | ); |
74 | 74 | |
75 | 75 | $lsx_controls['fields']['lsx_preloader_content_status'] = array( |
76 | - 'label' => esc_html__( 'Preloader Content', 'lsx' ), |
|
76 | + 'label' => esc_html__('Preloader Content', 'lsx'), |
|
77 | 77 | 'section' => 'lsx-core', |
78 | 78 | 'type' => 'checkbox', |
79 | 79 | ); |
80 | 80 | |
81 | 81 | return $lsx_controls; |
82 | 82 | } |
83 | -add_filter( 'lsx_customizer_controls', 'lsx_customizer_core_controls' ); |
|
83 | +add_filter('lsx_customizer_controls', 'lsx_customizer_core_controls'); |
|
84 | 84 | |
85 | 85 | /** |
86 | 86 | * Returns an array of the layout panel. |
@@ -91,56 +91,56 @@ discard block |
||
91 | 91 | * @return $lsx_controls array() |
92 | 92 | */ |
93 | 93 | function lsx_customizer_layout_controls($lsx_controls) { |
94 | - $lsx_controls['settings']['lsx_header_layout'] = array( |
|
94 | + $lsx_controls['settings']['lsx_header_layout'] = array( |
|
95 | 95 | 'default' => 'inline', //Default setting/value to save |
96 | 96 | 'type' => 'theme_mod', //Is this an 'option' or a 'theme_mod'? |
97 | 97 | 'transport' => 'postMessage', //What triggers a refresh of the setting? 'refresh' or 'postMessage' (instant)? |
98 | 98 | ); |
99 | 99 | $lsx_controls['fields']['lsx_header_layout'] = array( |
100 | - 'label' => esc_html__('Header','lsx'), |
|
100 | + 'label' => esc_html__('Header', 'lsx'), |
|
101 | 101 | 'section' => 'lsx-layout', |
102 | 102 | 'control' => 'LSX_Customize_Header_Layout_Control', |
103 | - 'choices' => array('central','expanded','inline') |
|
103 | + 'choices' => array('central', 'expanded', 'inline') |
|
104 | 104 | ); |
105 | 105 | $lsx_controls['sections']['lsx-layout'] = array( |
106 | - 'title' => esc_html__( 'Layout', 'lsx' ), |
|
107 | - 'description' => esc_html__( 'Change the layout sitewide. If your homepage is set to use a page with a template, the following will not apply to it.', 'lsx' ), |
|
106 | + 'title' => esc_html__('Layout', 'lsx'), |
|
107 | + 'description' => esc_html__('Change the layout sitewide. If your homepage is set to use a page with a template, the following will not apply to it.', 'lsx'), |
|
108 | 108 | 'priority' => 22 |
109 | 109 | ); |
110 | - $lsx_controls['settings']['lsx_layout'] = array( |
|
110 | + $lsx_controls['settings']['lsx_layout'] = array( |
|
111 | 111 | 'default' => '2cr', //Default setting/value to save |
112 | 112 | 'type' => 'theme_mod', //Is this an 'option' or a 'theme_mod'? |
113 | 113 | 'transport' => 'refresh', //What triggers a refresh of the setting? 'refresh' or 'postMessage' (instant)? |
114 | 114 | ); |
115 | - $lsx_controls['settings']['lsx_header_fixed'] = array( |
|
115 | + $lsx_controls['settings']['lsx_header_fixed'] = array( |
|
116 | 116 | 'default' => false, //Default setting/value to save |
117 | 117 | 'sanitize_callback' => 'lsx_sanitize_checkbox', |
118 | 118 | 'transport' => 'postMessage', //What triggers a refresh of the setting? 'refresh' or 'postMessage' (instant)? |
119 | 119 | ); |
120 | 120 | $lsx_controls['fields']['lsx_header_fixed'] = array( |
121 | - 'label' => esc_html__('Fixed Header','lsx'), |
|
121 | + 'label' => esc_html__('Fixed Header', 'lsx'), |
|
122 | 122 | 'section' => 'lsx-layout', |
123 | 123 | 'type' => 'checkbox', |
124 | 124 | ); |
125 | - $lsx_controls['settings']['lsx_header_search'] = array( |
|
125 | + $lsx_controls['settings']['lsx_header_search'] = array( |
|
126 | 126 | 'default' => false, //Default setting/value to save |
127 | 127 | 'sanitize_callback' => 'lsx_sanitize_checkbox', |
128 | 128 | 'transport' => 'postMessage', //What triggers a refresh of the setting? 'refresh' or 'postMessage' (instant)? |
129 | 129 | ); |
130 | 130 | $lsx_controls['fields']['lsx_header_search'] = array( |
131 | - 'label' => esc_html__('Search Box in Header','lsx'), |
|
131 | + 'label' => esc_html__('Search Box in Header', 'lsx'), |
|
132 | 132 | 'section' => 'lsx-layout', |
133 | 133 | 'type' => 'checkbox', |
134 | 134 | ); |
135 | 135 | $lsx_controls['fields']['lsx_layout'] = array( |
136 | - 'label' => esc_html__('Body','lsx'), |
|
136 | + 'label' => esc_html__('Body', 'lsx'), |
|
137 | 137 | 'section' => 'lsx-layout', |
138 | 138 | 'control' => 'LSX_Customize_Layout_Control', |
139 | - 'choices' => array('1c','2cr','2cl') |
|
139 | + 'choices' => array('1c', '2cr', '2cl') |
|
140 | 140 | ); |
141 | 141 | return $lsx_controls; |
142 | 142 | } |
143 | -add_filter('lsx_customizer_controls','lsx_customizer_layout_controls'); |
|
143 | +add_filter('lsx_customizer_controls', 'lsx_customizer_layout_controls'); |
|
144 | 144 | |
145 | 145 | /** |
146 | 146 | * Returns an array of the font controls. |
@@ -152,11 +152,11 @@ discard block |
||
152 | 152 | */ |
153 | 153 | function lsx_customizer_font_controls($lsx_controls) { |
154 | 154 | $lsx_controls['sections']['lsx-font'] = array( |
155 | - 'title' => esc_html__( 'Font', 'lsx' ), |
|
155 | + 'title' => esc_html__('Font', 'lsx'), |
|
156 | 156 | 'description' => 'Change the fonts sitewide.', |
157 | 157 | 'priority' => 41 |
158 | 158 | ); |
159 | - $lsx_controls['settings']['lsx_font'] = array( |
|
159 | + $lsx_controls['settings']['lsx_font'] = array( |
|
160 | 160 | 'default' => 'raleway_open_sans', //Default setting/value to save |
161 | 161 | 'type' => 'theme_mod', //Is this an 'option' or a 'theme_mod'? |
162 | 162 | 'transport' => 'refresh', //What triggers a refresh of the setting? 'refresh' or 'postMessage' (instant)? |
@@ -170,13 +170,13 @@ discard block |
||
170 | 170 | 'choices' => array( |
171 | 171 | 'raleway_open_sans' => array( |
172 | 172 | 'header' => array( |
173 | - "title" => esc_html__( 'Raleway', 'lsx' ), |
|
173 | + "title" => esc_html__('Raleway', 'lsx'), |
|
174 | 174 | "location" => "Raleway", |
175 | 175 | "cssDeclaration" => "'Raleway', sans-serif", |
176 | 176 | "cssClass" => "raleway", |
177 | 177 | ), |
178 | 178 | 'body' => array( |
179 | - "title" => esc_html__( 'Open Sans', 'lsx' ), |
|
179 | + "title" => esc_html__('Open Sans', 'lsx'), |
|
180 | 180 | "location" => "Open+Sans", |
181 | 181 | "cssDeclaration" => "'Open Sans', sans-serif", |
182 | 182 | "cssClass" => "openSans" |
@@ -184,13 +184,13 @@ discard block |
||
184 | 184 | ), |
185 | 185 | 'noto_serif_noto_sans' => array( |
186 | 186 | 'header' => array( |
187 | - "title" => esc_html__( 'Noto Serif', 'lsx' ), |
|
187 | + "title" => esc_html__('Noto Serif', 'lsx'), |
|
188 | 188 | "location" => "Noto+Serif", |
189 | 189 | "cssDeclaration" => "'Noto Serif', serif", |
190 | 190 | "cssClass" => "notoSerif", |
191 | 191 | ), |
192 | 192 | 'body' => array( |
193 | - "title" => esc_html__( 'Noto Sans', 'lsx' ), |
|
193 | + "title" => esc_html__('Noto Sans', 'lsx'), |
|
194 | 194 | "location" => "Noto+Sans", |
195 | 195 | "cssDeclaration" => "'Noto Sans', sans-serif", |
196 | 196 | "cssClass" => "notoSans", |
@@ -198,13 +198,13 @@ discard block |
||
198 | 198 | ), |
199 | 199 | 'noto_sans_noto_sans' => array( |
200 | 200 | 'header' => array( |
201 | - "title" => esc_html__( 'Noto Sans', 'lsx' ), |
|
201 | + "title" => esc_html__('Noto Sans', 'lsx'), |
|
202 | 202 | "location" => "Noto+Sans", |
203 | 203 | "cssDeclaration" => "'Noto Sans', sans-serif", |
204 | 204 | "cssClass" => "notoSans", |
205 | 205 | ), |
206 | 206 | 'body' => array( |
207 | - "title" => esc_html__( 'Noto Sans', 'lsx' ), |
|
207 | + "title" => esc_html__('Noto Sans', 'lsx'), |
|
208 | 208 | "location" => "Noto+Sans", |
209 | 209 | "cssDeclaration" => "'Noto Sans', sans-serif", |
210 | 210 | "cssClass" => "notoSans", |
@@ -212,13 +212,13 @@ discard block |
||
212 | 212 | ), |
213 | 213 | 'alegreya_open_sans' => array( |
214 | 214 | 'header' => array( |
215 | - "title" => esc_html__( 'Alegreya', 'lsx' ), |
|
215 | + "title" => esc_html__('Alegreya', 'lsx'), |
|
216 | 216 | "location" => "Alegreya", |
217 | 217 | "cssDeclaration" => "'Alegreya', serif", |
218 | 218 | "cssClass" => "alegreya", |
219 | 219 | ), |
220 | 220 | 'body' => array( |
221 | - "title" => esc_html__( 'Open Sans', 'lsx' ), |
|
221 | + "title" => esc_html__('Open Sans', 'lsx'), |
|
222 | 222 | "location" => "Open+Sans", |
223 | 223 | "cssDeclaration" => "'Open Sans', sans-serif", |
224 | 224 | "cssClass" => "openSans" |
@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | ); |
230 | 230 | return $lsx_controls; |
231 | 231 | } |
232 | -add_filter('lsx_customizer_controls','lsx_customizer_font_controls'); |
|
232 | +add_filter('lsx_customizer_controls', 'lsx_customizer_font_controls'); |
|
233 | 233 | |
234 | 234 | /** |
235 | 235 | * Returns an array of $controls for the customizer class to generate. |
@@ -239,12 +239,12 @@ discard block |
||
239 | 239 | * @category customizer |
240 | 240 | * @return $lsx_controls array() |
241 | 241 | */ |
242 | -function lsx_get_customizer_controls(){ |
|
242 | +function lsx_get_customizer_controls() { |
|
243 | 243 | $lsx_controls = array(); |
244 | 244 | $lsx_controls = apply_filters('lsx_customizer_controls', $lsx_controls); |
245 | 245 | return $lsx_controls; |
246 | 246 | } |
247 | -$lsx_customizer = new LSX_Theme_Customizer( lsx_get_customizer_controls() ); |
|
247 | +$lsx_customizer = new LSX_Theme_Customizer(lsx_get_customizer_controls()); |
|
248 | 248 | |
249 | -add_image_size( 'lsx-thumbnail-wide', 350, 230, true ); |
|
250 | -add_image_size( 'lsx-thumbnail-single', 750, 350, true ); |
|
251 | 249 | \ No newline at end of file |
250 | +add_image_size('lsx-thumbnail-wide', 350, 230, true); |
|
251 | +add_image_size('lsx-thumbnail-single', 750, 350, true); |
|
252 | 252 | \ No newline at end of file |