@@ -7,15 +7,15 @@ discard block |
||
7 | 7 | * @category bootstrap-navigation-walker |
8 | 8 | */ |
9 | 9 | |
10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
10 | +if ( ! defined('ABSPATH')) { |
|
11 | 11 | exit; |
12 | 12 | } |
13 | 13 | |
14 | -if ( ! class_exists( 'Walker_Nav_Menu' ) ) { |
|
14 | +if ( ! class_exists('Walker_Nav_Menu')) { |
|
15 | 15 | return; |
16 | 16 | } |
17 | 17 | |
18 | -if ( ! class_exists( 'LSX_Bootstrap_Navwalker' ) ) : |
|
18 | +if ( ! class_exists('LSX_Bootstrap_Navwalker')) : |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * Cleaner Bootstrap walker |
@@ -33,15 +33,15 @@ discard block |
||
33 | 33 | * @param string $output Passed by reference. Used to append additional content. |
34 | 34 | * @param int $depth Depth of page. Used for padding. |
35 | 35 | */ |
36 | - public function start_lvl( &$output, $depth = 0, $args = array() ) { |
|
37 | - $indent = str_repeat( "\t", $depth ); |
|
36 | + public function start_lvl(&$output, $depth = 0, $args = array()) { |
|
37 | + $indent = str_repeat("\t", $depth); |
|
38 | 38 | $output .= "\n$indent<ul role=\"menu\" class=\" dropdown-menu\">\n"; |
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
42 | 42 | * @param string $item Passed by reference. Used to append additional content. |
43 | 43 | */ |
44 | - public function filter_default_pages( &$item ) { |
|
44 | + public function filter_default_pages(&$item) { |
|
45 | 45 | return $item; |
46 | 46 | } |
47 | 47 | |
@@ -55,14 +55,14 @@ discard block |
||
55 | 55 | * @param int $current_page Menu item ID. |
56 | 56 | * @param object $args |
57 | 57 | */ |
58 | - public function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) { |
|
59 | - $indent = ( $depth ) ? str_repeat( "\t", $depth ) : ''; |
|
58 | + public function start_el(&$output, $item, $depth = 0, $args = array(), $id = 0) { |
|
59 | + $indent = ($depth) ? str_repeat("\t", $depth) : ''; |
|
60 | 60 | |
61 | 61 | /** |
62 | 62 | * If this is a default menu being called we need to fix |
63 | 63 | * the item object thats coming through. |
64 | 64 | */ |
65 | - if ( ! isset( $item->title ) ) { |
|
65 | + if ( ! isset($item->title)) { |
|
66 | 66 | return; |
67 | 67 | } |
68 | 68 | |
@@ -74,63 +74,63 @@ discard block |
||
74 | 74 | * comparison that is not case sensitive. The strcasecmp() function returns |
75 | 75 | * a 0 if the strings are equal. |
76 | 76 | */ |
77 | - if ( 0 == strcasecmp( $item->attr_title, 'divider' ) && 1 === $depth ) { |
|
77 | + if (0 == strcasecmp($item->attr_title, 'divider') && 1 === $depth) { |
|
78 | 78 | $output .= $indent . '<li role="presentation" class="divider">'; |
79 | - } elseif ( 0 == strcasecmp( $item->title, 'divider' ) && 1 === $depth ) { |
|
79 | + } elseif (0 == strcasecmp($item->title, 'divider') && 1 === $depth) { |
|
80 | 80 | $output .= $indent . '<li role="presentation" class="divider">'; |
81 | - } elseif ( 0 == strcasecmp( $item->attr_title, 'dropdown-header' ) && 1 === $depth ) { |
|
82 | - $output .= $indent . '<li role="presentation" class="dropdown-header">' . esc_attr( $item->title ); |
|
83 | - } elseif ( 0 == strcasecmp( $item->attr_title, 'disabled' ) ) { |
|
84 | - $output .= $indent . '<li role="presentation" class="disabled"><a href="#">' . esc_attr( $item->title ) . '</a>'; |
|
81 | + } elseif (0 == strcasecmp($item->attr_title, 'dropdown-header') && 1 === $depth) { |
|
82 | + $output .= $indent . '<li role="presentation" class="dropdown-header">' . esc_attr($item->title); |
|
83 | + } elseif (0 == strcasecmp($item->attr_title, 'disabled')) { |
|
84 | + $output .= $indent . '<li role="presentation" class="disabled"><a href="#">' . esc_attr($item->title) . '</a>'; |
|
85 | 85 | } else { |
86 | 86 | $class_names = ''; |
87 | 87 | $value = ''; |
88 | 88 | |
89 | - $classes = empty( $item->classes ) ? array() : (array) $item->classes; |
|
89 | + $classes = empty($item->classes) ? array() : (array) $item->classes; |
|
90 | 90 | $classes[] = 'menu-item-' . $item->ID; |
91 | 91 | |
92 | - $classes = apply_filters( 'lsx_nav_menu_css_class', array_filter( $classes ), $item, $args , $depth ); |
|
92 | + $classes = apply_filters('lsx_nav_menu_css_class', array_filter($classes), $item, $args, $depth); |
|
93 | 93 | |
94 | - $class_names = join( ' ', $classes ); |
|
94 | + $class_names = join(' ', $classes); |
|
95 | 95 | |
96 | - if ( $args->has_children ) |
|
96 | + if ($args->has_children) |
|
97 | 97 | $class_names .= ' dropdown'; |
98 | 98 | |
99 | - if ( in_array( 'current-menu-item', $classes ) ) |
|
99 | + if (in_array('current-menu-item', $classes)) |
|
100 | 100 | $class_names .= ' active'; |
101 | 101 | |
102 | - if ( in_array( 'current-menu-parent', $classes ) ) |
|
102 | + if (in_array('current-menu-parent', $classes)) |
|
103 | 103 | $class_names .= ' active'; |
104 | 104 | |
105 | 105 | //Check if this is ment to be a "social" type menu |
106 | - $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : ''; |
|
106 | + $class_names = $class_names ? ' class="' . esc_attr($class_names) . '"' : ''; |
|
107 | 107 | |
108 | - $id = apply_filters( 'nav_menu_item_id', 'menu-item-' . $item->ID, $item, $args ); |
|
109 | - $id = $id ? ' id="' . esc_attr( $id ) . '"' : ''; |
|
108 | + $id = apply_filters('nav_menu_item_id', 'menu-item-' . $item->ID, $item, $args); |
|
109 | + $id = $id ? ' id="' . esc_attr($id) . '"' : ''; |
|
110 | 110 | |
111 | 111 | $output .= $indent . '<li' . $id . $value . $class_names . '>'; |
112 | 112 | |
113 | 113 | $atts = array(); |
114 | - $atts['title'] = ! empty( $item->attr_title ) ? $item->attr_title : $item->title; |
|
115 | - $atts['target'] = ! empty( $item->target ) ? $item->target : ''; |
|
116 | - $atts['rel'] = ! empty( $item->xfn ) ? $item->xfn : ''; |
|
114 | + $atts['title'] = ! empty($item->attr_title) ? $item->attr_title : $item->title; |
|
115 | + $atts['target'] = ! empty($item->target) ? $item->target : ''; |
|
116 | + $atts['rel'] = ! empty($item->xfn) ? $item->xfn : ''; |
|
117 | 117 | |
118 | 118 | // If item has_children add atts to a. |
119 | - if ( $args->has_children ) { |
|
120 | - $atts['href'] = ! empty( $item->url ) ? $item->url : ''; |
|
119 | + if ($args->has_children) { |
|
120 | + $atts['href'] = ! empty($item->url) ? $item->url : ''; |
|
121 | 121 | $atts['data-toggle'] = 'dropdown'; |
122 | 122 | $atts['class'] = 'dropdown-toggle'; |
123 | 123 | $atts['aria-haspopup'] = 'true'; |
124 | 124 | } else { |
125 | - $atts['href'] = ! empty( $item->url ) ? $item->url : ''; |
|
125 | + $atts['href'] = ! empty($item->url) ? $item->url : ''; |
|
126 | 126 | } |
127 | 127 | |
128 | - $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args ); |
|
128 | + $atts = apply_filters('nav_menu_link_attributes', $atts, $item, $args); |
|
129 | 129 | |
130 | 130 | $attributes = ''; |
131 | - foreach ( $atts as $attr => $value ) { |
|
132 | - if ( ! empty( $value ) ) { |
|
133 | - $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value ); |
|
131 | + foreach ($atts as $attr => $value) { |
|
132 | + if ( ! empty($value)) { |
|
133 | + $value = ('href' === $attr) ? esc_url($value) : esc_attr($value); |
|
134 | 134 | $attributes .= ' ' . $attr . '="' . $value . '"'; |
135 | 135 | } |
136 | 136 | } |
@@ -138,11 +138,11 @@ discard block |
||
138 | 138 | $item_output = $args->before; |
139 | 139 | |
140 | 140 | $item_output .= '<a' . $attributes . '>'; |
141 | - $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after; |
|
142 | - $item_output .= ( $args->has_children && 0 === $depth ) ? ' <span class="caret"></span></a>' : '</a>'; |
|
141 | + $item_output .= $args->link_before . apply_filters('the_title', $item->title, $item->ID) . $args->link_after; |
|
142 | + $item_output .= ($args->has_children && 0 === $depth) ? ' <span class="caret"></span></a>' : '</a>'; |
|
143 | 143 | $item_output .= $args->after; |
144 | 144 | |
145 | - $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args ); |
|
145 | + $output .= apply_filters('walker_nav_menu_start_el', $item_output, $item, $depth, $args); |
|
146 | 146 | } |
147 | 147 | } |
148 | 148 | |
@@ -166,18 +166,18 @@ discard block |
||
166 | 166 | * @param string $output Passed by reference. Used to append additional content. |
167 | 167 | * @return null Null on failure with no changes to parameters. |
168 | 168 | */ |
169 | - public function display_element( $element, &$children_elements, $max_depth, $depth, $args, &$output ) { |
|
170 | - if ( ! $element ) { |
|
169 | + public function display_element($element, &$children_elements, $max_depth, $depth, $args, &$output) { |
|
170 | + if ( ! $element) { |
|
171 | 171 | return; |
172 | 172 | } |
173 | 173 | |
174 | 174 | $id_field = $this->db_fields['id']; |
175 | 175 | |
176 | - if ( is_object( $args[0] ) ) { |
|
177 | - $args[0]->has_children = ! empty( $children_elements[ $element->$id_field ] ); |
|
176 | + if (is_object($args[0])) { |
|
177 | + $args[0]->has_children = ! empty($children_elements[$element->$id_field]); |
|
178 | 178 | } |
179 | 179 | |
180 | - parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output ); |
|
180 | + parent::display_element($element, $children_elements, $max_depth, $depth, $args, $output); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
@@ -191,18 +191,18 @@ discard block |
||
191 | 191 | * @param array $args passed from the wp_nav_menu function. |
192 | 192 | * |
193 | 193 | */ |
194 | - public static function fallback( $args ) { |
|
195 | - if ( current_user_can( 'manage_options' ) ) { |
|
194 | + public static function fallback($args) { |
|
195 | + if (current_user_can('manage_options')) { |
|
196 | 196 | $fb_output = null; |
197 | 197 | |
198 | - if ( $args['container'] ) { |
|
198 | + if ($args['container']) { |
|
199 | 199 | $fb_output = '<' . $args['container']; |
200 | 200 | |
201 | - if ( $args['container_id'] ) { |
|
201 | + if ($args['container_id']) { |
|
202 | 202 | $fb_output .= ' id="' . $args['container_id'] . '"'; |
203 | 203 | } |
204 | 204 | |
205 | - if ( $args['container_class'] ) { |
|
205 | + if ($args['container_class']) { |
|
206 | 206 | $fb_output .= ' class="' . $args['container_class'] . '"'; |
207 | 207 | } |
208 | 208 | |
@@ -211,23 +211,23 @@ discard block |
||
211 | 211 | |
212 | 212 | $fb_output .= '<ul'; |
213 | 213 | |
214 | - if ( $args['menu_id'] ) { |
|
214 | + if ($args['menu_id']) { |
|
215 | 215 | $fb_output .= ' id="' . $args['menu_id'] . '"'; |
216 | 216 | } |
217 | 217 | |
218 | - if ( $args['menu_class'] ) { |
|
218 | + if ($args['menu_class']) { |
|
219 | 219 | $fb_output .= ' class="' . $args['menu_class'] . '"'; |
220 | 220 | } |
221 | 221 | |
222 | 222 | $fb_output .= '>'; |
223 | - $fb_output .= '<li><a href="' . esc_url( admin_url( 'nav-menus.php' ) ) . '">' . esc_html__( 'Add a menu', 'lsx' ) . '</a></li>'; |
|
223 | + $fb_output .= '<li><a href="' . esc_url(admin_url('nav-menus.php')) . '">' . esc_html__('Add a menu', 'lsx') . '</a></li>'; |
|
224 | 224 | $fb_output .= '</ul>'; |
225 | 225 | |
226 | - if ( $args['container'] ) { |
|
226 | + if ($args['container']) { |
|
227 | 227 | $fb_output .= '</' . $args['container'] . '>'; |
228 | 228 | } |
229 | 229 | |
230 | - echo wp_kses_post( $fb_output ); |
|
230 | + echo wp_kses_post($fb_output); |
|
231 | 231 | } |
232 | 232 | } |
233 | 233 |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage scripts |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! function_exists( 'lsx_scripts' ) ) : |
|
13 | +if ( ! function_exists('lsx_scripts')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Enqueue scripts, fonts and styles. |
@@ -26,9 +26,9 @@ discard block |
||
26 | 26 | |
27 | 27 | endif; |
28 | 28 | |
29 | -add_action( 'wp_enqueue_scripts', 'lsx_scripts' ); |
|
29 | +add_action('wp_enqueue_scripts', 'lsx_scripts'); |
|
30 | 30 | |
31 | -if ( ! function_exists( 'lsx_admin_scripts' ) ) : |
|
31 | +if ( ! function_exists('lsx_admin_scripts')) : |
|
32 | 32 | |
33 | 33 | /** |
34 | 34 | * Enqueue scripts (admin). |
@@ -37,14 +37,14 @@ discard block |
||
37 | 37 | * @subpackage scripts |
38 | 38 | */ |
39 | 39 | function lsx_admin_scripts() { |
40 | - wp_enqueue_script( 'lsx-admin', get_template_directory_uri() . '/assets/js/admin/lsx-admin.js', array( 'jquery' ), LSX_VERSION, true ); |
|
40 | + wp_enqueue_script('lsx-admin', get_template_directory_uri() . '/assets/js/admin/lsx-admin.js', array('jquery'), LSX_VERSION, true); |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | endif; |
44 | 44 | |
45 | -add_action( 'admin_enqueue_scripts', 'lsx_admin_scripts' ); |
|
45 | +add_action('admin_enqueue_scripts', 'lsx_admin_scripts'); |
|
46 | 46 | |
47 | -if ( ! function_exists( 'lsx_scripts_add_styles' ) ) : |
|
47 | +if ( ! function_exists('lsx_scripts_add_styles')) : |
|
48 | 48 | |
49 | 49 | /** |
50 | 50 | * Enqueue styles. |
@@ -53,23 +53,23 @@ discard block |
||
53 | 53 | * @subpackage scripts |
54 | 54 | */ |
55 | 55 | function lsx_scripts_add_styles() { |
56 | - wp_register_style( 'fontawesome', get_template_directory_uri() . '/assets/css/vendor/font-awesome.css', array(), LSX_VERSION ); |
|
57 | - wp_style_add_data( 'fontawesome', 'rtl', 'replace' ); |
|
56 | + wp_register_style('fontawesome', get_template_directory_uri() . '/assets/css/vendor/font-awesome.css', array(), LSX_VERSION); |
|
57 | + wp_style_add_data('fontawesome', 'rtl', 'replace'); |
|
58 | 58 | |
59 | - wp_register_style( 'bootstrap', get_template_directory_uri() . '/assets/css/vendor/bootstrap.css', array(), LSX_VERSION ); |
|
60 | - wp_style_add_data( 'bootstrap', 'rtl', 'replace' ); |
|
59 | + wp_register_style('bootstrap', get_template_directory_uri() . '/assets/css/vendor/bootstrap.css', array(), LSX_VERSION); |
|
60 | + wp_style_add_data('bootstrap', 'rtl', 'replace'); |
|
61 | 61 | |
62 | - wp_enqueue_style( 'slick', get_template_directory_uri() . '/assets/css/vendor/slick.css', array(), LSX_VERSION, null ); |
|
63 | - wp_enqueue_style( 'slick-lightbox', get_template_directory_uri() . '/assets/css/vendor/slick-lightbox.css', array( 'slick' ), LSX_VERSION, null ); |
|
62 | + wp_enqueue_style('slick', get_template_directory_uri() . '/assets/css/vendor/slick.css', array(), LSX_VERSION, null); |
|
63 | + wp_enqueue_style('slick-lightbox', get_template_directory_uri() . '/assets/css/vendor/slick-lightbox.css', array('slick'), LSX_VERSION, null); |
|
64 | 64 | |
65 | - wp_enqueue_style( 'lsx_main_style', get_template_directory_uri() . '/style.css', array(), LSX_VERSION ); |
|
66 | - wp_enqueue_style( 'lsx_main', get_template_directory_uri() . '/assets/css/lsx.css', array( 'lsx_main_style', 'fontawesome', 'bootstrap', 'slick', 'slick-lightbox' ), LSX_VERSION ); |
|
67 | - wp_style_add_data( 'lsx_main', 'rtl', 'replace' ); |
|
65 | + wp_enqueue_style('lsx_main_style', get_template_directory_uri() . '/style.css', array(), LSX_VERSION); |
|
66 | + wp_enqueue_style('lsx_main', get_template_directory_uri() . '/assets/css/lsx.css', array('lsx_main_style', 'fontawesome', 'bootstrap', 'slick', 'slick-lightbox'), LSX_VERSION); |
|
67 | + wp_style_add_data('lsx_main', 'rtl', 'replace'); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | endif; |
71 | 71 | |
72 | -if ( ! function_exists( 'lsx_scripts_add_fonts' ) ) : |
|
72 | +if ( ! function_exists('lsx_scripts_add_fonts')) : |
|
73 | 73 | |
74 | 74 | /** |
75 | 75 | * Enqueue fonts. |
@@ -80,36 +80,36 @@ discard block |
||
80 | 80 | function lsx_scripts_add_fonts() { |
81 | 81 | // Font data (full JSON) |
82 | 82 | |
83 | - $data_fonts = get_transient( 'lsx_font_data' ); |
|
83 | + $data_fonts = get_transient('lsx_font_data'); |
|
84 | 84 | |
85 | - if ( is_customize_preview() || false === $data_fonts ) { |
|
85 | + if (is_customize_preview() || false === $data_fonts) { |
|
86 | 86 | $data_fonts_file = get_template_directory() . '/assets/jsons/lsx-fonts.json'; |
87 | - $data_fonts = lsx_file_get_contents( $data_fonts_file ); |
|
88 | - $data_fonts = apply_filters( 'lsx_fonts_json', $data_fonts ); |
|
87 | + $data_fonts = lsx_file_get_contents($data_fonts_file); |
|
88 | + $data_fonts = apply_filters('lsx_fonts_json', $data_fonts); |
|
89 | 89 | } |
90 | 90 | |
91 | - if ( ! empty( $data_fonts ) ) { |
|
92 | - set_transient( 'lsx_font_data', $data_fonts, ( 5 * 60 ) ); |
|
91 | + if ( ! empty($data_fonts)) { |
|
92 | + set_transient('lsx_font_data', $data_fonts, (5 * 60)); |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | $data_fonts = '{' . $data_fonts . '}'; |
96 | - $data_fonts = json_decode( $data_fonts, true ); |
|
96 | + $data_fonts = json_decode($data_fonts, true); |
|
97 | 97 | |
98 | 98 | // Font data (saved) |
99 | 99 | |
100 | - $font_saved = get_theme_mod( 'lsx_font', 'lora_noto_sans' ); |
|
100 | + $font_saved = get_theme_mod('lsx_font', 'lora_noto_sans'); |
|
101 | 101 | |
102 | - if ( isset( $data_fonts[ $font_saved ] ) ) { |
|
103 | - $font = $data_fonts[ $font_saved ]; |
|
102 | + if (isset($data_fonts[$font_saved])) { |
|
103 | + $font = $data_fonts[$font_saved]; |
|
104 | 104 | } else { |
105 | 105 | $font = $data_fonts['lora_noto_sans']; |
106 | 106 | } |
107 | 107 | |
108 | 108 | // Font declarations |
109 | 109 | |
110 | - $font_declarations = get_transient( 'lsx_font_declarations' ); |
|
110 | + $font_declarations = get_transient('lsx_font_declarations'); |
|
111 | 111 | |
112 | - if ( is_customize_preview() || false === $font_declarations ) { |
|
112 | + if (is_customize_preview() || false === $font_declarations) { |
|
113 | 113 | $font_declarations = array( |
114 | 114 | 'header' => '', |
115 | 115 | 'body' => '', |
@@ -121,93 +121,93 @@ discard block |
||
121 | 121 | ); |
122 | 122 | |
123 | 123 | $font_declaration_placeholder_file = get_template_directory() . '/assets/css/lsx-fonts-placeholder.css'; |
124 | - $font_declaration_placeholder = lsx_file_get_contents( $font_declaration_placeholder_file ); |
|
124 | + $font_declaration_placeholder = lsx_file_get_contents($font_declaration_placeholder_file); |
|
125 | 125 | |
126 | - foreach ( $fonts_to_load as $font_to_load_key => $font_to_load ) { |
|
126 | + foreach ($fonts_to_load as $font_to_load_key => $font_to_load) { |
|
127 | 127 | $font_title = $font_to_load['title']; |
128 | - $font_title_sanitize = sanitize_title( $font_title ); |
|
128 | + $font_title_sanitize = sanitize_title($font_title); |
|
129 | 129 | |
130 | - $font_data = explode( ':', $font_to_load['location'] ); |
|
131 | - $font_weights = explode( ',', $font_data[1] ); |
|
130 | + $font_data = explode(':', $font_to_load['location']); |
|
131 | + $font_weights = explode(',', $font_data[1]); |
|
132 | 132 | |
133 | - foreach ( $font_weights as $font_weight_key => $font_weight ) { |
|
133 | + foreach ($font_weights as $font_weight_key => $font_weight) { |
|
134 | 134 | $font_style = 'normal'; |
135 | 135 | |
136 | - if ( preg_match( '/^[0-9]+i$/', $font_weight ) ) { |
|
136 | + if (preg_match('/^[0-9]+i$/', $font_weight)) { |
|
137 | 137 | $font_style = 'italic'; |
138 | - $font_weight = preg_replace( '/^([0-9]+)(i)$/', '$1', $font_weight ); |
|
138 | + $font_weight = preg_replace('/^([0-9]+)(i)$/', '$1', $font_weight); |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | $font_src = get_template_directory() . '/assets/fonts/' . $font_title_sanitize . '-' . $font_weight . '-' . $font_style; |
142 | - $font_src = apply_filters( 'lsx_fonts_src', $font_src, $font_title_sanitize, $font_weight, $font_style ); |
|
142 | + $font_src = apply_filters('lsx_fonts_src', $font_src, $font_title_sanitize, $font_weight, $font_style); |
|
143 | 143 | |
144 | 144 | $font_src_uri = get_template_directory_uri() . '/assets/fonts/' . $font_title_sanitize . '-' . $font_weight . '-' . $font_style; |
145 | - $font_src_uri = apply_filters( 'lsx_fonts_src_uri', $font_src_uri, $font_title_sanitize, $font_weight, $font_style ); |
|
145 | + $font_src_uri = apply_filters('lsx_fonts_src_uri', $font_src_uri, $font_title_sanitize, $font_weight, $font_style); |
|
146 | 146 | |
147 | - if ( file_exists( $font_src . '.ttf' ) && file_exists( $font_src . '.woff' ) ) { |
|
147 | + if (file_exists($font_src . '.ttf') && file_exists($font_src . '.woff')) { |
|
148 | 148 | $font_declaration = $font_declaration_placeholder; |
149 | - $font_declaration = str_replace( '[font-family]', '\'' . $font_title . '\'', $font_declaration ); |
|
150 | - $font_declaration = str_replace( '[font-style]', $font_style, $font_declaration ); |
|
151 | - $font_declaration = str_replace( '[font-weight]', $font_weight, $font_declaration ); |
|
152 | - $font_declaration = str_replace( '[font-src]', $font_src_uri, $font_declaration ); |
|
153 | - $font_declaration = preg_replace( '/(\/\*# ).+( \*\/)/', '', $font_declaration ); |
|
149 | + $font_declaration = str_replace('[font-family]', '\'' . $font_title . '\'', $font_declaration); |
|
150 | + $font_declaration = str_replace('[font-style]', $font_style, $font_declaration); |
|
151 | + $font_declaration = str_replace('[font-weight]', $font_weight, $font_declaration); |
|
152 | + $font_declaration = str_replace('[font-src]', $font_src_uri, $font_declaration); |
|
153 | + $font_declaration = preg_replace('/(\/\*# ).+( \*\/)/', '', $font_declaration); |
|
154 | 154 | |
155 | - $font_declarations[ $font_to_load_key ] .= $font_declaration; |
|
155 | + $font_declarations[$font_to_load_key] .= $font_declaration; |
|
156 | 156 | } |
157 | 157 | } |
158 | 158 | } |
159 | 159 | |
160 | - set_transient( 'lsx_font_declarations', $font_declarations, ( 24 * 60 * 60 ) ); |
|
160 | + set_transient('lsx_font_declarations', $font_declarations, (24 * 60 * 60)); |
|
161 | 161 | } |
162 | 162 | |
163 | 163 | $http_var = 'http'; |
164 | 164 | |
165 | - if ( is_ssl() ) { |
|
165 | + if (is_ssl()) { |
|
166 | 166 | $http_var .= 's'; |
167 | 167 | } |
168 | 168 | |
169 | - if ( ! empty( $font_declarations ) && is_array( $font_declarations ) ) { |
|
170 | - foreach ( $font_declarations as $font_declaration_key => $font_declaration ) { |
|
171 | - if ( ! empty( $font_declaration ) ) { |
|
172 | - wp_add_inline_style( 'lsx_main', $font_declaration ); |
|
169 | + if ( ! empty($font_declarations) && is_array($font_declarations)) { |
|
170 | + foreach ($font_declarations as $font_declaration_key => $font_declaration) { |
|
171 | + if ( ! empty($font_declaration)) { |
|
172 | + wp_add_inline_style('lsx_main', $font_declaration); |
|
173 | 173 | } else { |
174 | - wp_enqueue_style( 'lsx-' . $font_declaration_key . '-font', esc_url( $http_var . '://fonts.googleapis.com/css?family=' . $font[ $font_declaration_key ]['location'] ) ); |
|
174 | + wp_enqueue_style('lsx-' . $font_declaration_key . '-font', esc_url($http_var . '://fonts.googleapis.com/css?family=' . $font[$font_declaration_key]['location'])); |
|
175 | 175 | } |
176 | 176 | } |
177 | 177 | } else { |
178 | - wp_enqueue_style( 'lsx-header-font', esc_url( $http_var . '://fonts.googleapis.com/css?family=' . $font['header']['location'] ) ); |
|
179 | - wp_enqueue_style( 'lsx-body-font', esc_url( $http_var . '://fonts.googleapis.com/css?family=' . $font['body']['location'] ) ); |
|
178 | + wp_enqueue_style('lsx-header-font', esc_url($http_var . '://fonts.googleapis.com/css?family=' . $font['header']['location'])); |
|
179 | + wp_enqueue_style('lsx-body-font', esc_url($http_var . '://fonts.googleapis.com/css?family=' . $font['body']['location'])); |
|
180 | 180 | } |
181 | 181 | |
182 | 182 | // Font styles |
183 | 183 | |
184 | - $font_styles = get_transient( 'lsx_font_styles' ); |
|
184 | + $font_styles = get_transient('lsx_font_styles'); |
|
185 | 185 | |
186 | - if ( is_customize_preview() || false === $font_styles ) { |
|
186 | + if (is_customize_preview() || false === $font_styles) { |
|
187 | 187 | $font_styles = ''; |
188 | 188 | |
189 | 189 | $css_fonts_file = get_template_directory() . '/assets/css/lsx-fonts.css'; |
190 | - $css_fonts = lsx_file_get_contents( $css_fonts_file ); |
|
191 | - $css_fonts = apply_filters( 'lsx_fonts_css', $css_fonts ); |
|
190 | + $css_fonts = lsx_file_get_contents($css_fonts_file); |
|
191 | + $css_fonts = apply_filters('lsx_fonts_css', $css_fonts); |
|
192 | 192 | |
193 | - if ( ! empty( $css_fonts ) ) { |
|
193 | + if ( ! empty($css_fonts)) { |
|
194 | 194 | $font_styles = $css_fonts; |
195 | - $font_styles = str_replace( '[font-family-headings]', $font['header']['cssDeclaration'], $font_styles ); |
|
196 | - $font_styles = str_replace( '[font-family-body]', $font['body']['cssDeclaration'], $font_styles ); |
|
197 | - $font_styles = preg_replace( '/(\/\*# ).+( \*\/)/', '', $font_styles ); |
|
195 | + $font_styles = str_replace('[font-family-headings]', $font['header']['cssDeclaration'], $font_styles); |
|
196 | + $font_styles = str_replace('[font-family-body]', $font['body']['cssDeclaration'], $font_styles); |
|
197 | + $font_styles = preg_replace('/(\/\*# ).+( \*\/)/', '', $font_styles); |
|
198 | 198 | } |
199 | 199 | |
200 | - set_transient( 'lsx_font_styles', $font_styles, ( 24 * 60 * 60 ) ); |
|
200 | + set_transient('lsx_font_styles', $font_styles, (24 * 60 * 60)); |
|
201 | 201 | } |
202 | 202 | |
203 | - if ( ! empty( $font_styles ) ) { |
|
204 | - wp_add_inline_style( 'lsx_main', $font_styles ); |
|
203 | + if ( ! empty($font_styles)) { |
|
204 | + wp_add_inline_style('lsx_main', $font_styles); |
|
205 | 205 | } |
206 | 206 | } |
207 | 207 | |
208 | 208 | endif; |
209 | 209 | |
210 | -if ( ! function_exists( 'lsx_scripts_add_scripts' ) ) : |
|
210 | +if ( ! function_exists('lsx_scripts_add_scripts')) : |
|
211 | 211 | |
212 | 212 | /** |
213 | 213 | * Enqueue scripts. |
@@ -216,31 +216,31 @@ discard block |
||
216 | 216 | * @subpackage scripts |
217 | 217 | */ |
218 | 218 | function lsx_scripts_add_scripts() { |
219 | - if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { |
|
220 | - wp_enqueue_script( 'comment-reply' ); |
|
219 | + if (is_singular() && comments_open() && get_option('thread_comments')) { |
|
220 | + wp_enqueue_script('comment-reply'); |
|
221 | 221 | } |
222 | 222 | |
223 | - wp_enqueue_script( 'platform', get_template_directory_uri() . '/assets/js/vendor/platform.min.js', array(), LSX_VERSION, true ); |
|
224 | - wp_enqueue_script( 'bootstrap', get_template_directory_uri() . '/assets/js/vendor/bootstrap.min.js', array( 'jquery' ), LSX_VERSION, true ); |
|
223 | + wp_enqueue_script('platform', get_template_directory_uri() . '/assets/js/vendor/platform.min.js', array(), LSX_VERSION, true); |
|
224 | + wp_enqueue_script('bootstrap', get_template_directory_uri() . '/assets/js/vendor/bootstrap.min.js', array('jquery'), LSX_VERSION, true); |
|
225 | 225 | |
226 | - wp_enqueue_script( 'imagesLoaded', get_template_directory_uri() . '/assets/js/vendor/imagesloaded.pkgd.min.js', array( 'masonry' ), LSX_VERSION, true ); |
|
227 | - wp_enqueue_script( 'scrolltofixed', get_template_directory_uri() . '/assets/js/vendor/jquery-scrolltofixed-min.js', array( 'jquery' ), LSX_VERSION, true ); |
|
228 | - wp_enqueue_script( 'slick', get_template_directory_uri() . '/assets/js/vendor/slick.min.js', array( 'jquery' ), LSX_VERSION, true ); |
|
229 | - wp_enqueue_script( 'slick-lightbox', get_template_directory_uri() . '/assets/js/vendor/slick-lightbox.min.js', array( 'jquery', 'slick' ), LSX_VERSION, true ); |
|
230 | - wp_enqueue_script( 'picturefill', get_template_directory_uri() . '/assets/js/vendor/picturefill.min.js', array(), LSX_VERSION, true ); |
|
226 | + wp_enqueue_script('imagesLoaded', get_template_directory_uri() . '/assets/js/vendor/imagesloaded.pkgd.min.js', array('masonry'), LSX_VERSION, true); |
|
227 | + wp_enqueue_script('scrolltofixed', get_template_directory_uri() . '/assets/js/vendor/jquery-scrolltofixed-min.js', array('jquery'), LSX_VERSION, true); |
|
228 | + wp_enqueue_script('slick', get_template_directory_uri() . '/assets/js/vendor/slick.min.js', array('jquery'), LSX_VERSION, true); |
|
229 | + wp_enqueue_script('slick-lightbox', get_template_directory_uri() . '/assets/js/vendor/slick-lightbox.min.js', array('jquery', 'slick'), LSX_VERSION, true); |
|
230 | + wp_enqueue_script('picturefill', get_template_directory_uri() . '/assets/js/vendor/picturefill.min.js', array(), LSX_VERSION, true); |
|
231 | 231 | |
232 | - wp_enqueue_script( 'lsx_script', get_template_directory_uri() . '/assets/js/lsx.min.js', array( 'jquery', 'platform', 'bootstrap', 'masonry', 'imagesLoaded', 'scrolltofixed', 'slick', 'slick-lightbox', 'picturefill' ), LSX_VERSION, true ); |
|
232 | + wp_enqueue_script('lsx_script', get_template_directory_uri() . '/assets/js/lsx.min.js', array('jquery', 'platform', 'bootstrap', 'masonry', 'imagesLoaded', 'scrolltofixed', 'slick', 'slick-lightbox', 'picturefill'), LSX_VERSION, true); |
|
233 | 233 | |
234 | 234 | $param_array = array( |
235 | - 'columns' => apply_filters( 'lsx_archive_column_number', 3 ), |
|
235 | + 'columns' => apply_filters('lsx_archive_column_number', 3), |
|
236 | 236 | ); |
237 | 237 | |
238 | - wp_localize_script( 'lsx_script', 'lsx_params', $param_array ); |
|
238 | + wp_localize_script('lsx_script', 'lsx_params', $param_array); |
|
239 | 239 | } |
240 | 240 | |
241 | 241 | endif; |
242 | 242 | |
243 | -if ( ! function_exists( 'lsx_scripts_child_theme' ) ) : |
|
243 | +if ( ! function_exists('lsx_scripts_child_theme')) : |
|
244 | 244 | |
245 | 245 | /** |
246 | 246 | * Enqueue scripts and styles (for child theme). |
@@ -249,12 +249,12 @@ discard block |
||
249 | 249 | * @subpackage scripts |
250 | 250 | */ |
251 | 251 | function lsx_scripts_child_theme() { |
252 | - if ( is_child_theme() && file_exists( get_stylesheet_directory() . '/assets/css/custom.css' ) ) { |
|
253 | - wp_enqueue_style( 'child-css', get_stylesheet_directory_uri() . '/assets/css/custom.css', array( 'lsx_main' ), LSX_VERSION ); |
|
254 | - wp_style_add_data( 'child-css', 'rtl', 'replace' ); |
|
252 | + if (is_child_theme() && file_exists(get_stylesheet_directory() . '/assets/css/custom.css')) { |
|
253 | + wp_enqueue_style('child-css', get_stylesheet_directory_uri() . '/assets/css/custom.css', array('lsx_main'), LSX_VERSION); |
|
254 | + wp_style_add_data('child-css', 'rtl', 'replace'); |
|
255 | 255 | } |
256 | 256 | } |
257 | 257 | |
258 | 258 | endif; |
259 | 259 | |
260 | -add_action( 'wp_enqueue_scripts', 'lsx_scripts_child_theme', 1999 ); |
|
260 | +add_action('wp_enqueue_scripts', 'lsx_scripts_child_theme', 1999); |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | * @subpackage layout |
7 | 7 | */ |
8 | 8 | |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if ( ! defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | -if ( ! function_exists( 'lsx_layout_selector' ) ) : |
|
13 | +if ( ! function_exists('lsx_layout_selector')) : |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Layout selector. |
@@ -18,14 +18,14 @@ discard block |
||
18 | 18 | * @package lsx |
19 | 19 | * @subpackage layout |
20 | 20 | */ |
21 | - function lsx_layout_selector( $class, $area = 'site' ) { |
|
21 | + function lsx_layout_selector($class, $area = 'site') { |
|
22 | 22 | $return_class = ''; |
23 | - $layout = get_theme_mod( 'lsx_layout', '2cr' ); |
|
24 | - $layout = apply_filters( 'lsx_layout', $layout ); |
|
23 | + $layout = get_theme_mod('lsx_layout', '2cr'); |
|
24 | + $layout = apply_filters('lsx_layout', $layout); |
|
25 | 25 | $default_size = 'sm'; |
26 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
26 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
27 | 27 | |
28 | - switch ( $layout ) { |
|
28 | + switch ($layout) { |
|
29 | 29 | case '1c': |
30 | 30 | $main_class = 'col-' . $size . '-12'; |
31 | 31 | $sidebar_class = 'col-' . $size . '-12'; |
@@ -44,12 +44,12 @@ discard block |
||
44 | 44 | break; |
45 | 45 | } |
46 | 46 | |
47 | - if ( 'main' === $class ) { |
|
48 | - $return_class = apply_filters( 'lsx_layout_selector', $main_class, $class, $layout, $size ); |
|
47 | + if ('main' === $class) { |
|
48 | + $return_class = apply_filters('lsx_layout_selector', $main_class, $class, $layout, $size); |
|
49 | 49 | } |
50 | 50 | |
51 | - if ( 'sidebar' === $class ) { |
|
52 | - $return_class = apply_filters( 'lsx_layout_selector', $sidebar_class, $class, $layout, $size ); |
|
51 | + if ('sidebar' === $class) { |
|
52 | + $return_class = apply_filters('lsx_layout_selector', $sidebar_class, $class, $layout, $size); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | return $return_class; |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | |
58 | 58 | endif; |
59 | 59 | |
60 | -if ( ! function_exists( 'lsx_main_class' ) ) : |
|
60 | +if ( ! function_exists('lsx_main_class')) : |
|
61 | 61 | |
62 | 62 | /** |
63 | 63 | * .main classes. |
@@ -66,12 +66,12 @@ discard block |
||
66 | 66 | * @subpackage layout |
67 | 67 | */ |
68 | 68 | function lsx_main_class() { |
69 | - return lsx_layout_selector( 'main' ); |
|
69 | + return lsx_layout_selector('main'); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | endif; |
73 | 73 | |
74 | -if ( ! function_exists( 'lsx_sidebar_class' ) ) : |
|
74 | +if ( ! function_exists('lsx_sidebar_class')) : |
|
75 | 75 | |
76 | 76 | /** |
77 | 77 | * .sidebar classes. |
@@ -80,12 +80,12 @@ discard block |
||
80 | 80 | * @subpackage layout |
81 | 81 | */ |
82 | 82 | function lsx_sidebar_class() { |
83 | - return lsx_layout_selector( 'sidebar' ); |
|
83 | + return lsx_layout_selector('sidebar'); |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | endif; |
87 | 87 | |
88 | -if ( ! function_exists( 'lsx_header_classes' ) ) : |
|
88 | +if ( ! function_exists('lsx_header_classes')) : |
|
89 | 89 | |
90 | 90 | /** |
91 | 91 | * Output the classes for the header. |
@@ -93,19 +93,19 @@ discard block |
||
93 | 93 | * @package lsx |
94 | 94 | * @subpackage layout |
95 | 95 | */ |
96 | - function lsx_header_classes( $additional = false ) { |
|
96 | + function lsx_header_classes($additional = false) { |
|
97 | 97 | $classes = 'banner navbar navbar-default'; |
98 | 98 | |
99 | - if ( false !== $additional ) { |
|
99 | + if (false !== $additional) { |
|
100 | 100 | $classes .= ' ' . $additional; |
101 | 101 | } |
102 | 102 | |
103 | - echo esc_attr( $classes ); |
|
103 | + echo esc_attr($classes); |
|
104 | 104 | } |
105 | 105 | |
106 | 106 | endif; |
107 | 107 | |
108 | -if ( ! function_exists( 'lsx_top_menu_classes' ) ) : |
|
108 | +if ( ! function_exists('lsx_top_menu_classes')) : |
|
109 | 109 | |
110 | 110 | /** |
111 | 111 | * Output the classes for the top-menu. |
@@ -113,19 +113,19 @@ discard block |
||
113 | 113 | * @package lsx |
114 | 114 | * @subpackage layout |
115 | 115 | */ |
116 | - function lsx_top_menu_classes( $additional = false ) { |
|
116 | + function lsx_top_menu_classes($additional = false) { |
|
117 | 117 | $classes = 'top-menu-default'; |
118 | 118 | |
119 | - if ( false !== $additional ) { |
|
119 | + if (false !== $additional) { |
|
120 | 120 | $classes .= ' ' . $additional; |
121 | 121 | } |
122 | 122 | |
123 | - echo esc_attr( $classes ); |
|
123 | + echo esc_attr($classes); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | endif; |
127 | 127 | |
128 | -if ( ! function_exists( 'lsx_add_footer_sidebar_area' ) ) : |
|
128 | +if ( ! function_exists('lsx_add_footer_sidebar_area')) : |
|
129 | 129 | |
130 | 130 | /** |
131 | 131 | * Output the Footer CTA and/pr Footer Widgets. |
@@ -134,34 +134,34 @@ discard block |
||
134 | 134 | * @subpackage layout |
135 | 135 | */ |
136 | 136 | function lsx_add_footer_sidebar_area() { |
137 | - if ( is_active_sidebar( 'sidebar-footer-cta' ) ) : ?> |
|
137 | + if (is_active_sidebar('sidebar-footer-cta')) : ?> |
|
138 | 138 | <div id="footer-cta"> |
139 | 139 | <div class="container"> |
140 | 140 | <div class="lsx-full-width"> |
141 | 141 | <div class="lsx-hero-unit"> |
142 | - <?php dynamic_sidebar( 'sidebar-footer-cta' ); ?> |
|
142 | + <?php dynamic_sidebar('sidebar-footer-cta'); ?> |
|
143 | 143 | </div> |
144 | 144 | </div> |
145 | 145 | </div> |
146 | 146 | </div> |
147 | 147 | <?php endif; ?> |
148 | 148 | |
149 | - <?php if ( is_active_sidebar( 'sidebar-footer' ) ) : ?> |
|
149 | + <?php if (is_active_sidebar('sidebar-footer')) : ?> |
|
150 | 150 | <div id="footer-widgets"> |
151 | 151 | <div class="container"> |
152 | 152 | <div class="row"> |
153 | - <?php dynamic_sidebar( 'sidebar-footer' ); ?> |
|
153 | + <?php dynamic_sidebar('sidebar-footer'); ?> |
|
154 | 154 | </div> |
155 | 155 | </div> |
156 | 156 | </div> |
157 | 157 | <?php endif; |
158 | 158 | } |
159 | 159 | |
160 | - add_action( 'lsx_footer_before', 'lsx_add_footer_sidebar_area' ); |
|
160 | + add_action('lsx_footer_before', 'lsx_add_footer_sidebar_area'); |
|
161 | 161 | |
162 | 162 | endif; |
163 | 163 | |
164 | -if ( ! function_exists( 'lsx_global_header' ) ) : |
|
164 | +if ( ! function_exists('lsx_global_header')) : |
|
165 | 165 | |
166 | 166 | /** |
167 | 167 | * Displays the global header. |
@@ -174,21 +174,21 @@ discard block |
||
174 | 174 | // return; |
175 | 175 | // } |
176 | 176 | |
177 | - $show_on_front = get_option( 'show_on_front' ); |
|
177 | + $show_on_front = get_option('show_on_front'); |
|
178 | 178 | $queried_object = get_queried_object(); |
179 | 179 | $default_size = 'sm'; |
180 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
180 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
181 | 181 | |
182 | - if ( true === apply_filters( 'lsx_global_header_disable', false ) ) : |
|
182 | + if (true === apply_filters('lsx_global_header_disable', false)) : |
|
183 | 183 | // Display only the breadcrumbs |
184 | 184 | ?> |
185 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
185 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
186 | 186 | <?php lsx_global_header_inner_bottom(); ?> |
187 | 187 | </div> |
188 | 188 | <?php |
189 | - elseif ( is_page() && ( 'page' !== $show_on_front || ! is_front_page() ) ) : |
|
189 | + elseif (is_page() && ('page' !== $show_on_front || ! is_front_page())) : |
|
190 | 190 | ?> |
191 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
191 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
192 | 192 | <header class="archive-header"> |
193 | 193 | <h1 class="archive-title"><?php the_title(); ?></h1> |
194 | 194 | </header> |
@@ -196,9 +196,9 @@ discard block |
||
196 | 196 | <?php lsx_global_header_inner_bottom(); ?> |
197 | 197 | </div> |
198 | 198 | <?php |
199 | - elseif ( is_single() && ! is_singular( 'post' ) ) : |
|
199 | + elseif (is_single() && ! is_singular('post')) : |
|
200 | 200 | ?> |
201 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
201 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
202 | 202 | <header class="archive-header"> |
203 | 203 | <h1 class="archive-title"><?php the_title(); ?></h1> |
204 | 204 | </header> |
@@ -206,15 +206,15 @@ discard block |
||
206 | 206 | <?php lsx_global_header_inner_bottom(); ?> |
207 | 207 | </div> |
208 | 208 | <?php |
209 | - elseif ( is_search() ) : |
|
209 | + elseif (is_search()) : |
|
210 | 210 | ?> |
211 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
211 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
212 | 212 | <header class="archive-header"> |
213 | 213 | <h1 class="archive-title"> |
214 | 214 | <?php |
215 | 215 | printf( |
216 | 216 | /* Translators: %s: search term/query */ |
217 | - esc_html__( 'Search Results for: %s', 'lsx' ), |
|
217 | + esc_html__('Search Results for: %s', 'lsx'), |
|
218 | 218 | '<span>' . get_search_query() . '</span>' |
219 | 219 | ); |
220 | 220 | ?> |
@@ -224,12 +224,12 @@ discard block |
||
224 | 224 | <?php lsx_global_header_inner_bottom(); ?> |
225 | 225 | </div> |
226 | 226 | <?php |
227 | - elseif ( is_author() ) : |
|
227 | + elseif (is_author()) : |
|
228 | 228 | $author = get_the_author(); |
229 | - $author_avatar = get_avatar( get_the_author_meta( 'ID' ), 256 ); |
|
229 | + $author_avatar = get_avatar(get_the_author_meta('ID'), 256); |
|
230 | 230 | $author_bio = get_the_archive_description(); |
231 | 231 | ?> |
232 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
232 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
233 | 233 | <header class="archive-header"> |
234 | 234 | <h1 class="archive-title"><?php the_archive_title(); ?></h1> |
235 | 235 | </header> |
@@ -237,13 +237,13 @@ discard block |
||
237 | 237 | <?php lsx_global_header_inner_bottom(); ?> |
238 | 238 | </div> |
239 | 239 | <?php |
240 | - elseif ( is_archive() ) : |
|
240 | + elseif (is_archive()) : |
|
241 | 241 | ?> |
242 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
242 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
243 | 243 | <header class="archive-header"> |
244 | 244 | <h1 class="archive-title"> |
245 | - <?php if ( has_post_format() && ! is_category() && ! is_tag() && ! is_date() && ! is_tax( 'post_format' ) ) { ?> |
|
246 | - <?php the_archive_title( esc_html__( 'Type:', 'lsx' ) ); ?> |
|
245 | + <?php if (has_post_format() && ! is_category() && ! is_tag() && ! is_date() && ! is_tax('post_format')) { ?> |
|
246 | + <?php the_archive_title(esc_html__('Type:', 'lsx')); ?> |
|
247 | 247 | <?php } else { ?> |
248 | 248 | <?php the_archive_title(); ?> |
249 | 249 | <?php } ?> |
@@ -255,31 +255,31 @@ discard block |
||
255 | 255 | <?php lsx_global_header_inner_bottom(); ?> |
256 | 256 | </div> |
257 | 257 | <?php |
258 | - elseif ( 'page' === $show_on_front && (int) get_option( 'page_for_posts' ) === $queried_object->ID ) : |
|
258 | + elseif ('page' === $show_on_front && (int) get_option('page_for_posts') === $queried_object->ID) : |
|
259 | 259 | ?> |
260 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
260 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
261 | 261 | <header class="archive-header"> |
262 | - <h1 class="archive-title"><?php esc_html_e( 'Blog', 'lsx' ); ?></h1> |
|
262 | + <h1 class="archive-title"><?php esc_html_e('Blog', 'lsx'); ?></h1> |
|
263 | 263 | </header> |
264 | 264 | |
265 | 265 | <?php lsx_global_header_inner_bottom(); ?> |
266 | 266 | </div> |
267 | 267 | <?php |
268 | - elseif ( ! is_singular( 'post' ) ) : |
|
268 | + elseif ( ! is_singular('post')) : |
|
269 | 269 | // Display only the breadcrumbs |
270 | 270 | ?> |
271 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
271 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
272 | 272 | <?php lsx_global_header_inner_bottom(); ?> |
273 | 273 | </div> |
274 | 274 | <?php |
275 | 275 | endif; |
276 | 276 | } |
277 | 277 | |
278 | - add_action( 'lsx_content_wrap_before', 'lsx_global_header' ); |
|
278 | + add_action('lsx_content_wrap_before', 'lsx_global_header'); |
|
279 | 279 | |
280 | 280 | endif; |
281 | 281 | |
282 | -if ( ! function_exists( 'lsx_author_extra_info' ) ) : |
|
282 | +if ( ! function_exists('lsx_author_extra_info')) : |
|
283 | 283 | |
284 | 284 | /** |
285 | 285 | * Displays the author extra info. |
@@ -289,56 +289,56 @@ discard block |
||
289 | 289 | */ |
290 | 290 | function lsx_author_extra_info() { |
291 | 291 | $default_size = 'sm'; |
292 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
292 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
293 | 293 | |
294 | - if ( is_author() ) : |
|
295 | - $author_id = get_the_author_meta( 'ID' ); |
|
294 | + if (is_author()) : |
|
295 | + $author_id = get_the_author_meta('ID'); |
|
296 | 296 | $author = get_the_author(); |
297 | - $author_avatar = get_avatar( $author_id, 256 ); |
|
297 | + $author_avatar = get_avatar($author_id, 256); |
|
298 | 298 | $author_bio = get_the_archive_description(); |
299 | - $author_url = get_the_author_meta( 'url', $author_id ); |
|
300 | - $author_email = get_the_author_meta( 'email', $author_id ); |
|
301 | - $author_facebook = get_the_author_meta( 'facebook', $author_id ); |
|
302 | - $author_twitter = get_the_author_meta( 'twitter', $author_id ); |
|
303 | - $author_googleplus = get_the_author_meta( 'googleplus', $author_id ); |
|
299 | + $author_url = get_the_author_meta('url', $author_id); |
|
300 | + $author_email = get_the_author_meta('email', $author_id); |
|
301 | + $author_facebook = get_the_author_meta('facebook', $author_id); |
|
302 | + $author_twitter = get_the_author_meta('twitter', $author_id); |
|
303 | + $author_googleplus = get_the_author_meta('googleplus', $author_id); |
|
304 | 304 | ?> |
305 | - <div class="col-<?php echo esc_attr( $size ); ?>-12"> |
|
305 | + <div class="col-<?php echo esc_attr($size); ?>-12"> |
|
306 | 306 | <div class="archive-author-data"> |
307 | - <figure class="archive-author-avatar"><?php echo wp_kses_post( $author_avatar ); ?></figure> |
|
307 | + <figure class="archive-author-avatar"><?php echo wp_kses_post($author_avatar); ?></figure> |
|
308 | 308 | |
309 | - <?php if ( ! empty( $author_url ) || ! empty( $author_email ) || ! empty( $author_facebook ) || ! empty( $author_twitter ) || ! empty( $author_googleplus ) ) : ?> |
|
309 | + <?php if ( ! empty($author_url) || ! empty($author_email) || ! empty($author_facebook) || ! empty($author_twitter) || ! empty($author_googleplus)) : ?> |
|
310 | 310 | <div class="archive-author-social-links"> |
311 | - <?php if ( ! empty( $author_url ) ) : ?> |
|
312 | - <a href="<?php echo esc_url( $author_url ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-url"><i class="fa fa-link" aria-hidden="true"></i></a> |
|
311 | + <?php if ( ! empty($author_url)) : ?> |
|
312 | + <a href="<?php echo esc_url($author_url); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-url"><i class="fa fa-link" aria-hidden="true"></i></a> |
|
313 | 313 | <?php endif; ?> |
314 | 314 | |
315 | - <?php if ( ! empty( $author_email ) ) : ?> |
|
316 | - <a href="mailto:<?php echo esc_attr( $author_email ); ?>" class="archive-author-social-link archive-author-social-link-email"><i class="fa fa-envelope" aria-hidden="true"></i></a> |
|
315 | + <?php if ( ! empty($author_email)) : ?> |
|
316 | + <a href="mailto:<?php echo esc_attr($author_email); ?>" class="archive-author-social-link archive-author-social-link-email"><i class="fa fa-envelope" aria-hidden="true"></i></a> |
|
317 | 317 | <?php endif; ?> |
318 | 318 | |
319 | - <?php if ( ! empty( $author_facebook ) ) : ?> |
|
320 | - <a href="<?php echo esc_url( $author_facebook ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a> |
|
319 | + <?php if ( ! empty($author_facebook)) : ?> |
|
320 | + <a href="<?php echo esc_url($author_facebook); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-facebook"><i class="fa fa-facebook" aria-hidden="true"></i></a> |
|
321 | 321 | <?php endif; ?> |
322 | 322 | |
323 | - <?php if ( ! empty( $author_twitter ) ) : ?> |
|
324 | - <a href="https://twitter.com/<?php echo esc_attr( $author_twitter ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a> |
|
323 | + <?php if ( ! empty($author_twitter)) : ?> |
|
324 | + <a href="https://twitter.com/<?php echo esc_attr($author_twitter); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-twitter"><i class="fa fa-twitter" aria-hidden="true"></i></a> |
|
325 | 325 | <?php endif; ?> |
326 | 326 | |
327 | - <?php if ( ! empty( $author_googleplus ) ) : ?> |
|
328 | - <a href="<?php echo esc_url( $author_googleplus ); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-googleplus"><i class="fa fa-google-plus" aria-hidden="true"></i></a> |
|
327 | + <?php if ( ! empty($author_googleplus)) : ?> |
|
328 | + <a href="<?php echo esc_url($author_googleplus); ?>" target="_blank" rel="nofollow noreferrer noopener" class="archive-author-social-link archive-author-social-link-googleplus"><i class="fa fa-google-plus" aria-hidden="true"></i></a> |
|
329 | 329 | <?php endif; ?> |
330 | 330 | </div> |
331 | 331 | <?php endif; ?> |
332 | 332 | |
333 | - <?php if ( ! empty( $author_bio ) ) : ?> |
|
334 | - <h2 class="archive-author-title text-center"><?php esc_html_e( 'About the author', 'lsx' ); ?></h2> |
|
335 | - <p class="archive-author-bio"><?php echo wp_kses_post( $author_bio ); ?></p> |
|
333 | + <?php if ( ! empty($author_bio)) : ?> |
|
334 | + <h2 class="archive-author-title text-center"><?php esc_html_e('About the author', 'lsx'); ?></h2> |
|
335 | + <p class="archive-author-bio"><?php echo wp_kses_post($author_bio); ?></p> |
|
336 | 336 | <?php endif; ?> |
337 | 337 | |
338 | 338 | <h2 class="archive-author-posts text-center"> |
339 | 339 | <?php |
340 | - esc_html_e( 'All posts by ', 'lsx' ); |
|
341 | - esc_html( $author ); |
|
340 | + esc_html_e('All posts by ', 'lsx'); |
|
341 | + esc_html($author); |
|
342 | 342 | ?> |
343 | 343 | </h2> |
344 | 344 | </div> |
@@ -347,11 +347,11 @@ discard block |
||
347 | 347 | endif; |
348 | 348 | } |
349 | 349 | |
350 | - add_action( 'lsx_content_wrap_before', 'lsx_author_extra_info', 11 ); |
|
350 | + add_action('lsx_content_wrap_before', 'lsx_author_extra_info', 11); |
|
351 | 351 | |
352 | 352 | endif; |
353 | 353 | |
354 | -if ( ! function_exists( 'lsx_post_header' ) ) : |
|
354 | +if ( ! function_exists('lsx_post_header')) : |
|
355 | 355 | |
356 | 356 | /** |
357 | 357 | * Displays the post header. |
@@ -361,21 +361,21 @@ discard block |
||
361 | 361 | */ |
362 | 362 | function lsx_post_header() { |
363 | 363 | $default_size = 'sm'; |
364 | - $size = apply_filters( 'lsx_bootstrap_column_size', $default_size ); |
|
364 | + $size = apply_filters('lsx_bootstrap_column_size', $default_size); |
|
365 | 365 | |
366 | - if ( is_singular( 'post' ) ) : |
|
366 | + if (is_singular('post')) : |
|
367 | 367 | $format = get_post_format(); |
368 | 368 | |
369 | - if ( false === $format ) { |
|
369 | + if (false === $format) { |
|
370 | 370 | $format = 'standard'; |
371 | 371 | } |
372 | 372 | |
373 | - $format = lsx_translate_format_to_fontawesome( $format ); |
|
373 | + $format = lsx_translate_format_to_fontawesome($format); |
|
374 | 374 | ?> |
375 | - <div class="archive-header-wrapper col-<?php echo esc_attr( $size ); ?>-12"> |
|
375 | + <div class="archive-header-wrapper col-<?php echo esc_attr($size); ?>-12"> |
|
376 | 376 | <header class="archive-header"> |
377 | 377 | <h1 class="archive-title"> |
378 | - <i class="format-link fa fa-<?php echo esc_attr( $format ); ?>"></i> |
|
378 | + <i class="format-link fa fa-<?php echo esc_attr($format); ?>"></i> |
|
379 | 379 | <span><?php the_title(); ?></span> |
380 | 380 | </h1> |
381 | 381 | </header> |
@@ -384,11 +384,11 @@ discard block |
||
384 | 384 | endif; |
385 | 385 | } |
386 | 386 | |
387 | - add_action( 'lsx_entry_top', 'lsx_post_header' ); |
|
387 | + add_action('lsx_entry_top', 'lsx_post_header'); |
|
388 | 388 | |
389 | 389 | endif; |
390 | 390 | |
391 | -if ( ! function_exists( 'lsx_add_viewport_meta_tag' ) ) : |
|
391 | +if ( ! function_exists('lsx_add_viewport_meta_tag')) : |
|
392 | 392 | |
393 | 393 | /** |
394 | 394 | * Add Viewport Meta Tag to head. |
@@ -402,11 +402,11 @@ discard block |
||
402 | 402 | <?php |
403 | 403 | } |
404 | 404 | |
405 | - add_action( 'wp_head', 'lsx_add_viewport_meta_tag' ); |
|
405 | + add_action('wp_head', 'lsx_add_viewport_meta_tag'); |
|
406 | 406 | |
407 | 407 | endif; |
408 | 408 | |
409 | -if ( ! function_exists( 'lsx_header_search_form' ) ) : |
|
409 | +if ( ! function_exists('lsx_header_search_form')) : |
|
410 | 410 | |
411 | 411 | /** |
412 | 412 | * Add a search form to just above the nav menu. |
@@ -415,13 +415,13 @@ discard block |
||
415 | 415 | * @subpackage layout |
416 | 416 | */ |
417 | 417 | function lsx_header_search_form() { |
418 | - $search_form = get_theme_mod( 'lsx_header_search', false ); |
|
418 | + $search_form = get_theme_mod('lsx_header_search', false); |
|
419 | 419 | |
420 | - if ( false !== $search_form || is_customize_preview() ) { |
|
421 | - get_search_form( true ); |
|
420 | + if (false !== $search_form || is_customize_preview()) { |
|
421 | + get_search_form(true); |
|
422 | 422 | } |
423 | 423 | } |
424 | 424 | |
425 | - add_action( 'lsx_nav_before', 'lsx_header_search_form', 0 ); |
|
425 | + add_action('lsx_nav_before', 'lsx_header_search_form', 0); |
|
426 | 426 | |
427 | 427 | endif; |