@@ -30,7 +30,6 @@ |
||
30 | 30 | * @param string $output Passed by reference. Used to append additional content. |
31 | 31 | * @param object $item Menu item data object. |
32 | 32 | * @param int $depth Depth of menu item. Used for padding. |
33 | - * @param int $current_page Menu item ID. |
|
34 | 33 | * @param object $args |
35 | 34 | */ |
36 | 35 | public function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) { |
@@ -159,17 +159,17 @@ |
||
159 | 159 | * @return null Null on failure with no changes to parameters. |
160 | 160 | */ |
161 | 161 | public function display_element( $element, &$children_elements, $max_depth, $depth, $args, &$output ) { |
162 | - if ( ! $element ) |
|
163 | - return; |
|
162 | + if ( ! $element ) |
|
163 | + return; |
|
164 | 164 | |
165 | - $id_field = $this->db_fields['id']; |
|
165 | + $id_field = $this->db_fields['id']; |
|
166 | 166 | |
167 | - // Display this element. |
|
168 | - if ( is_object( $args[0] ) ) |
|
169 | - $args[0]->has_children = ! empty( $children_elements[ $element->$id_field ] ); |
|
167 | + // Display this element. |
|
168 | + if ( is_object( $args[0] ) ) |
|
169 | + $args[0]->has_children = ! empty( $children_elements[ $element->$id_field ] ); |
|
170 | 170 | |
171 | - parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output ); |
|
172 | - } |
|
171 | + parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output ); |
|
172 | + } |
|
173 | 173 | |
174 | 174 | /** |
175 | 175 | * Menu Fallback |
@@ -1,5 +1,8 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) return; // Exit if accessed directly |
|
2 | +if ( ! defined( 'ABSPATH' ) ) { |
|
3 | + return; |
|
4 | +} |
|
5 | +// Exit if accessed directly |
|
3 | 6 | |
4 | 7 | class Lsx_Bootstrap_Navwalker extends Walker_Nav_Menu { |
5 | 8 | |
@@ -71,14 +74,17 @@ discard block |
||
71 | 74 | |
72 | 75 | $class_names = join( ' ', $classes ); |
73 | 76 | |
74 | - if ( $args->has_children ) |
|
75 | - $class_names .= ' dropdown'; |
|
77 | + if ( $args->has_children ) { |
|
78 | + $class_names .= ' dropdown'; |
|
79 | + } |
|
76 | 80 | |
77 | - if ( in_array( 'current-menu-item', $classes ) ) |
|
78 | - $class_names .= ' active'; |
|
81 | + if ( in_array( 'current-menu-item', $classes ) ) { |
|
82 | + $class_names .= ' active'; |
|
83 | + } |
|
79 | 84 | |
80 | - if ( in_array( 'current-menu-parent', $classes ) ) |
|
81 | - $class_names .= ' active'; |
|
85 | + if ( in_array( 'current-menu-parent', $classes ) ) { |
|
86 | + $class_names .= ' active'; |
|
87 | + } |
|
82 | 88 | |
83 | 89 | //Check if this is ment to be a "social" type menu |
84 | 90 | $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : ''; |
@@ -159,14 +165,16 @@ discard block |
||
159 | 165 | * @return null Null on failure with no changes to parameters. |
160 | 166 | */ |
161 | 167 | public function display_element( $element, &$children_elements, $max_depth, $depth, $args, &$output ) { |
162 | - if ( ! $element ) |
|
163 | - return; |
|
168 | + if ( ! $element ) { |
|
169 | + return; |
|
170 | + } |
|
164 | 171 | |
165 | 172 | $id_field = $this->db_fields['id']; |
166 | 173 | |
167 | 174 | // Display this element. |
168 | - if ( is_object( $args[0] ) ) |
|
169 | - $args[0]->has_children = ! empty( $children_elements[ $element->$id_field ] ); |
|
175 | + if ( is_object( $args[0] ) ) { |
|
176 | + $args[0]->has_children = ! empty( $children_elements[ $element->$id_field ] ); |
|
177 | + } |
|
170 | 178 | |
171 | 179 | parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output ); |
172 | 180 | } |
@@ -189,29 +197,34 @@ discard block |
||
189 | 197 | if ( $args['container'] ) { |
190 | 198 | $fb_output = '<' . $args['container']; |
191 | 199 | |
192 | - if ( $args['container_id'] ) |
|
193 | - $fb_output .= ' id="' . $args['container_id'] . '"'; |
|
200 | + if ( $args['container_id'] ) { |
|
201 | + $fb_output .= ' id="' . $args['container_id'] . '"'; |
|
202 | + } |
|
194 | 203 | |
195 | - if ( $args['container_class'] ) |
|
196 | - $fb_output .= ' class="' . $args['container_class'] . '"'; |
|
204 | + if ( $args['container_class'] ) { |
|
205 | + $fb_output .= ' class="' . $args['container_class'] . '"'; |
|
206 | + } |
|
197 | 207 | |
198 | 208 | $fb_output .= '>'; |
199 | 209 | } |
200 | 210 | |
201 | 211 | $fb_output .= '<ul'; |
202 | 212 | |
203 | - if ( $args['menu_id'] ) |
|
204 | - $fb_output .= ' id="' . $args['menu_id'] . '"'; |
|
213 | + if ( $args['menu_id'] ) { |
|
214 | + $fb_output .= ' id="' . $args['menu_id'] . '"'; |
|
215 | + } |
|
205 | 216 | |
206 | - if ( $args['menu_class'] ) |
|
207 | - $fb_output .= ' class="' . $args['menu_class'] . '"'; |
|
217 | + if ( $args['menu_class'] ) { |
|
218 | + $fb_output .= ' class="' . $args['menu_class'] . '"'; |
|
219 | + } |
|
208 | 220 | |
209 | 221 | $fb_output .= '>'; |
210 | 222 | $fb_output .= '<li><a href="' . admin_url( 'nav-menus.php' ) . '">' . esc_html__( 'Add a menu', 'lsx' ) . '</a></li>'; |
211 | 223 | $fb_output .= '</ul>'; |
212 | 224 | |
213 | - if ( $args['container'] ) |
|
214 | - $fb_output .= '</' . $args['container'] . '>'; |
|
225 | + if ( $args['container'] ) { |
|
226 | + $fb_output .= '</' . $args['container'] . '>'; |
|
227 | + } |
|
215 | 228 | |
216 | 229 | echo wp_kses_post( $fb_output ); |
217 | 230 | } |
@@ -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 | class Lsx_Bootstrap_Navwalker extends Walker_Nav_Menu { |
5 | 5 | |
@@ -10,15 +10,15 @@ discard block |
||
10 | 10 | * @param string $output Passed by reference. Used to append additional content. |
11 | 11 | * @param int $depth Depth of page. Used for padding. |
12 | 12 | */ |
13 | - public function start_lvl( &$output, $depth = 0, $args = array() ) { |
|
14 | - $indent = str_repeat( "\t", $depth ); |
|
13 | + public function start_lvl(&$output, $depth = 0, $args = array()) { |
|
14 | + $indent = str_repeat("\t", $depth); |
|
15 | 15 | $output .= "\n$indent<ul role=\"menu\" class=\" dropdown-menu\">\n"; |
16 | 16 | } |
17 | 17 | |
18 | 18 | /** |
19 | 19 | * @param string $item Passed by reference. Used to append additional content. |
20 | 20 | */ |
21 | - public function filter_default_pages( &$item ) { |
|
21 | + public function filter_default_pages(&$item) { |
|
22 | 22 | |
23 | 23 | return $item; |
24 | 24 | } |
@@ -33,14 +33,14 @@ discard block |
||
33 | 33 | * @param int $current_page Menu item ID. |
34 | 34 | * @param object $args |
35 | 35 | */ |
36 | - public function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) { |
|
37 | - $indent = ( $depth ) ? str_repeat( "\t", $depth ) : ''; |
|
36 | + public function start_el(&$output, $item, $depth = 0, $args = array(), $id = 0) { |
|
37 | + $indent = ($depth) ? str_repeat("\t", $depth) : ''; |
|
38 | 38 | |
39 | 39 | /** |
40 | 40 | * If this is a default menu being called we need to fix |
41 | 41 | * the item object thats coming through. |
42 | 42 | */ |
43 | - if(!isset($item->title)){ |
|
43 | + if ( ! isset($item->title)) { |
|
44 | 44 | return; |
45 | 45 | } |
46 | 46 | |
@@ -52,62 +52,62 @@ discard block |
||
52 | 52 | * comparison that is not case sensitive. The strcasecmp() function returns |
53 | 53 | * a 0 if the strings are equal. |
54 | 54 | */ |
55 | - if ( 0 == strcasecmp( $item->attr_title, 'divider' ) && 1 === $depth ) { |
|
55 | + if (0 == strcasecmp($item->attr_title, 'divider') && 1 === $depth) { |
|
56 | 56 | $output .= $indent . '<li role="presentation" class="divider">'; |
57 | - } elseif ( 0 == strcasecmp( $item->title, 'divider' ) && 1 === $depth ) { |
|
57 | + } elseif (0 == strcasecmp($item->title, 'divider') && 1 === $depth) { |
|
58 | 58 | $output .= $indent . '<li role="presentation" class="divider">'; |
59 | - } elseif ( 0 == strcasecmp( $item->attr_title, 'dropdown-header' ) && 1 === $depth ) { |
|
60 | - $output .= $indent . '<li role="presentation" class="dropdown-header">' . esc_attr( $item->title ); |
|
61 | - } elseif ( 0 == strcasecmp( $item->attr_title, 'disabled' ) ) { |
|
62 | - $output .= $indent . '<li role="presentation" class="disabled"><a href="#">' . esc_attr( $item->title ) . '</a>'; |
|
59 | + } elseif (0 == strcasecmp($item->attr_title, 'dropdown-header') && 1 === $depth) { |
|
60 | + $output .= $indent . '<li role="presentation" class="dropdown-header">' . esc_attr($item->title); |
|
61 | + } elseif (0 == strcasecmp($item->attr_title, 'disabled')) { |
|
62 | + $output .= $indent . '<li role="presentation" class="disabled"><a href="#">' . esc_attr($item->title) . '</a>'; |
|
63 | 63 | } else { |
64 | 64 | $class_names = $value = ''; |
65 | 65 | |
66 | - $classes = empty( $item->classes ) ? array() : (array) $item->classes; |
|
66 | + $classes = empty($item->classes) ? array() : (array) $item->classes; |
|
67 | 67 | $classes[] = 'menu-item-' . $item->ID; |
68 | 68 | |
69 | - $classes = apply_filters( 'lsx_nav_menu_css_class', array_filter( $classes ), $item, $args , $depth ); |
|
69 | + $classes = apply_filters('lsx_nav_menu_css_class', array_filter($classes), $item, $args, $depth); |
|
70 | 70 | |
71 | - $class_names = join( ' ', $classes ); |
|
71 | + $class_names = join(' ', $classes); |
|
72 | 72 | |
73 | - if ( $args->has_children ) |
|
73 | + if ($args->has_children) |
|
74 | 74 | $class_names .= ' dropdown'; |
75 | 75 | |
76 | - if ( in_array( 'current-menu-item', $classes ) ) |
|
76 | + if (in_array('current-menu-item', $classes)) |
|
77 | 77 | $class_names .= ' active'; |
78 | 78 | |
79 | - if ( in_array( 'current-menu-parent', $classes ) ) |
|
79 | + if (in_array('current-menu-parent', $classes)) |
|
80 | 80 | $class_names .= ' active'; |
81 | 81 | |
82 | 82 | //Check if this is ment to be a "social" type menu |
83 | - $class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : ''; |
|
83 | + $class_names = $class_names ? ' class="' . esc_attr($class_names) . '"' : ''; |
|
84 | 84 | |
85 | - $id = apply_filters( 'nav_menu_item_id', 'menu-item-'. $item->ID, $item, $args ); |
|
86 | - $id = $id ? ' id="' . esc_attr( $id ) . '"' : ''; |
|
85 | + $id = apply_filters('nav_menu_item_id', 'menu-item-' . $item->ID, $item, $args); |
|
86 | + $id = $id ? ' id="' . esc_attr($id) . '"' : ''; |
|
87 | 87 | |
88 | - $output .= $indent . '<li' . $id . $value . $class_names .'>'; |
|
88 | + $output .= $indent . '<li' . $id . $value . $class_names . '>'; |
|
89 | 89 | |
90 | 90 | $atts = array(); |
91 | - $atts['title'] = ! empty( $item->title ) ? $item->title : ''; |
|
92 | - $atts['target'] = ! empty( $item->target ) ? $item->target : ''; |
|
93 | - $atts['rel'] = ! empty( $item->xfn ) ? $item->xfn : ''; |
|
91 | + $atts['title'] = ! empty($item->title) ? $item->title : ''; |
|
92 | + $atts['target'] = ! empty($item->target) ? $item->target : ''; |
|
93 | + $atts['rel'] = ! empty($item->xfn) ? $item->xfn : ''; |
|
94 | 94 | |
95 | 95 | // If item has_children add atts to a. |
96 | - if ( $args->has_children ) { |
|
97 | - $atts['href'] = ! empty( $item->url ) ? $item->url : ''; |
|
98 | - $atts['data-toggle'] = 'dropdown'; |
|
99 | - $atts['class'] = 'dropdown-toggle'; |
|
100 | - $atts['aria-haspopup'] = 'true'; |
|
96 | + if ($args->has_children) { |
|
97 | + $atts['href'] = ! empty($item->url) ? $item->url : ''; |
|
98 | + $atts['data-toggle'] = 'dropdown'; |
|
99 | + $atts['class'] = 'dropdown-toggle'; |
|
100 | + $atts['aria-haspopup'] = 'true'; |
|
101 | 101 | } else { |
102 | - $atts['href'] = ! empty( $item->url ) ? $item->url : ''; |
|
102 | + $atts['href'] = ! empty($item->url) ? $item->url : ''; |
|
103 | 103 | } |
104 | 104 | |
105 | - $atts = apply_filters( 'nav_menu_link_attributes', $atts, $item, $args ); |
|
105 | + $atts = apply_filters('nav_menu_link_attributes', $atts, $item, $args); |
|
106 | 106 | |
107 | 107 | $attributes = ''; |
108 | - foreach ( $atts as $attr => $value ) { |
|
109 | - if ( ! empty( $value ) ) { |
|
110 | - $value = ( 'href' === $attr ) ? esc_url( $value ) : esc_attr( $value ); |
|
108 | + foreach ($atts as $attr => $value) { |
|
109 | + if ( ! empty($value)) { |
|
110 | + $value = ('href' === $attr) ? esc_url($value) : esc_attr($value); |
|
111 | 111 | $attributes .= ' ' . $attr . '="' . $value . '"'; |
112 | 112 | } |
113 | 113 | } |
@@ -121,19 +121,19 @@ discard block |
||
121 | 121 | * if there is a value in the attr_title property. If the attr_title |
122 | 122 | * property is NOT null we apply it as the class name for the glyphicon. |
123 | 123 | */ |
124 | - if ( ! empty( $item->attr_title ) ) { |
|
125 | - $item_output .= '<a'. $attributes .'"><span class="glyphicon ' . esc_attr( $item->attr_title ) . '"></span> '; |
|
124 | + if ( ! empty($item->attr_title)) { |
|
125 | + $item_output .= '<a' . $attributes . '"><span class="glyphicon ' . esc_attr($item->attr_title) . '"></span> '; |
|
126 | 126 | } else { |
127 | - $item_output .= '<a'. $attributes .'>'; |
|
127 | + $item_output .= '<a' . $attributes . '>'; |
|
128 | 128 | } |
129 | 129 | |
130 | - $item_output .= $args->link_before . apply_filters( 'the_title', $item->title, $item->ID ) . $args->link_after; |
|
131 | - $item_output .= ( $args->has_children && 0 === $depth ) ? ' <span class="caret"></span></a>' : '</a>'; |
|
130 | + $item_output .= $args->link_before . apply_filters('the_title', $item->title, $item->ID) . $args->link_after; |
|
131 | + $item_output .= ($args->has_children && 0 === $depth) ? ' <span class="caret"></span></a>' : '</a>'; |
|
132 | 132 | $item_output .= $args->after; |
133 | 133 | |
134 | 134 | |
135 | 135 | |
136 | - $output .= apply_filters( 'walker_nav_menu_start_el', $item_output, $item, $depth, $args ); |
|
136 | + $output .= apply_filters('walker_nav_menu_start_el', $item_output, $item, $depth, $args); |
|
137 | 137 | } |
138 | 138 | } |
139 | 139 | |
@@ -157,17 +157,17 @@ discard block |
||
157 | 157 | * @param string $output Passed by reference. Used to append additional content. |
158 | 158 | * @return null Null on failure with no changes to parameters. |
159 | 159 | */ |
160 | - public function display_element( $element, &$children_elements, $max_depth, $depth, $args, &$output ) { |
|
161 | - if ( ! $element ) |
|
160 | + public function display_element($element, &$children_elements, $max_depth, $depth, $args, &$output) { |
|
161 | + if ( ! $element) |
|
162 | 162 | return; |
163 | 163 | |
164 | 164 | $id_field = $this->db_fields['id']; |
165 | 165 | |
166 | 166 | // Display this element. |
167 | - if ( is_object( $args[0] ) ) |
|
168 | - $args[0]->has_children = ! empty( $children_elements[ $element->$id_field ] ); |
|
167 | + if (is_object($args[0])) |
|
168 | + $args[0]->has_children = ! empty($children_elements[$element->$id_field]); |
|
169 | 169 | |
170 | - parent::display_element( $element, $children_elements, $max_depth, $depth, $args, $output ); |
|
170 | + parent::display_element($element, $children_elements, $max_depth, $depth, $args, $output); |
|
171 | 171 | } |
172 | 172 | |
173 | 173 | /** |
@@ -181,17 +181,17 @@ discard block |
||
181 | 181 | * @param array $args passed from the wp_nav_menu function. |
182 | 182 | * |
183 | 183 | */ |
184 | - public static function fallback( $args ) { |
|
185 | - if ( current_user_can( 'manage_options' ) ) { |
|
184 | + public static function fallback($args) { |
|
185 | + if (current_user_can('manage_options')) { |
|
186 | 186 | $fb_output = null; |
187 | 187 | |
188 | - if ( $args['container'] ) { |
|
188 | + if ($args['container']) { |
|
189 | 189 | $fb_output = '<' . $args['container']; |
190 | 190 | |
191 | - if ( $args['container_id'] ) |
|
191 | + if ($args['container_id']) |
|
192 | 192 | $fb_output .= ' id="' . $args['container_id'] . '"'; |
193 | 193 | |
194 | - if ( $args['container_class'] ) |
|
194 | + if ($args['container_class']) |
|
195 | 195 | $fb_output .= ' class="' . $args['container_class'] . '"'; |
196 | 196 | |
197 | 197 | $fb_output .= '>'; |
@@ -199,20 +199,20 @@ discard block |
||
199 | 199 | |
200 | 200 | $fb_output .= '<ul'; |
201 | 201 | |
202 | - if ( $args['menu_id'] ) |
|
202 | + if ($args['menu_id']) |
|
203 | 203 | $fb_output .= ' id="' . $args['menu_id'] . '"'; |
204 | 204 | |
205 | - if ( $args['menu_class'] ) |
|
205 | + if ($args['menu_class']) |
|
206 | 206 | $fb_output .= ' class="' . $args['menu_class'] . '"'; |
207 | 207 | |
208 | 208 | $fb_output .= '>'; |
209 | - $fb_output .= '<li><a href="' . admin_url( 'nav-menus.php' ) . '">' . esc_html__( 'Add a menu', 'lsx' ) . '</a></li>'; |
|
209 | + $fb_output .= '<li><a href="' . admin_url('nav-menus.php') . '">' . esc_html__('Add a menu', 'lsx') . '</a></li>'; |
|
210 | 210 | $fb_output .= '</ul>'; |
211 | 211 | |
212 | - if ( $args['container'] ) |
|
212 | + if ($args['container']) |
|
213 | 213 | $fb_output .= '</' . $args['container'] . '>'; |
214 | 214 | |
215 | - echo wp_kses_post( $fb_output ); |
|
215 | + echo wp_kses_post($fb_output); |
|
216 | 216 | } |
217 | 217 | } |
218 | 218 | } |
@@ -221,9 +221,9 @@ discard block |
||
221 | 221 | /** |
222 | 222 | * Add in our custom classes to the menus |
223 | 223 | */ |
224 | -function wpml_nav_language_switcher_fix( $items , $args ) { |
|
225 | - $items = str_replace('menu-item-language-current','menu-item-language-current dropdown',$items); |
|
226 | - $items = str_replace('submenu-languages','submenu-languages dropdown-menu',$items); |
|
224 | +function wpml_nav_language_switcher_fix($items, $args) { |
|
225 | + $items = str_replace('menu-item-language-current', 'menu-item-language-current dropdown', $items); |
|
226 | + $items = str_replace('submenu-languages', 'submenu-languages dropdown-menu', $items); |
|
227 | 227 | return $items; |
228 | 228 | } |
229 | -add_filter( 'wp_nav_menu_items', 'wpml_nav_language_switcher_fix', 10, 2 ); |
|
229 | +add_filter('wp_nav_menu_items', 'wpml_nav_language_switcher_fix', 10, 2); |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | |
6 | 6 | <?php lsx_content_wrap_before(); ?> |
7 | 7 | |
8 | - <div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>"> |
|
8 | + <div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>"> |
|
9 | 9 | |
10 | 10 | <?php lsx_content_before(); ?> |
11 | 11 | |
@@ -13,7 +13,7 @@ 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 | 18 | <?php lsx_entry_before(); ?> |
19 | 19 | |
@@ -22,28 +22,28 @@ discard block |
||
22 | 22 | <?php lsx_entry_top(); ?> |
23 | 23 | |
24 | 24 | <div class="entry-content"> |
25 | - <h2><?php esc_html_e( 'The Last 30 Posts', 'lsx' ); ?></h3> |
|
25 | + <h2><?php esc_html_e('The Last 30 Posts', 'lsx'); ?></h3> |
|
26 | 26 | <ul> |
27 | - <?php $loop = new WP_Query( array( 'posts_per_page' => 30 ) ); ?> |
|
28 | - <?php if ( $loop->have_posts() ) { while ( $loop->have_posts() ) { $loop->the_post(); ?> |
|
27 | + <?php $loop = new WP_Query(array('posts_per_page' => 30)); ?> |
|
28 | + <?php if ($loop->have_posts()) { while ($loop->have_posts()) { $loop->the_post(); ?> |
|
29 | 29 | <?php $loop->is_home = false; ?> |
30 | - <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> - <?php the_time( get_option( 'date_format' ) ); ?> - <?php echo esc_html( $post->comment_count ); ?> <?php esc_html_e( 'comments', 'lsx' ); ?></li> |
|
30 | + <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> - <?php the_time(get_option('date_format')); ?> - <?php echo esc_html($post->comment_count); ?> <?php esc_html_e('comments', 'lsx'); ?></li> |
|
31 | 31 | <?php } } wp_reset_postdata(); ?> |
32 | 32 | </ul> |
33 | 33 | |
34 | - <h2><?php esc_html_e( 'Categories', 'lsx' ); ?></h3> |
|
34 | + <h2><?php esc_html_e('Categories', 'lsx'); ?></h3> |
|
35 | 35 | |
36 | 36 | <ul> |
37 | - <?php wp_list_categories( 'title_li=&hierarchical=0&show_count=1' ); ?> |
|
37 | + <?php wp_list_categories('title_li=&hierarchical=0&show_count=1'); ?> |
|
38 | 38 | </ul> |
39 | 39 | |
40 | - <h2><?php esc_html_e( 'Monthly Archives', 'lsx' ); ?></h3> |
|
40 | + <h2><?php esc_html_e('Monthly Archives', 'lsx'); ?></h3> |
|
41 | 41 | |
42 | 42 | <ul> |
43 | - <?php wp_get_archives( 'type=monthly&show_post_count=1' ); ?> |
|
43 | + <?php wp_get_archives('type=monthly&show_post_count=1'); ?> |
|
44 | 44 | </ul> |
45 | 45 | </div><!-- .entry-content --> |
46 | - <?php edit_post_link( esc_html__( 'Edit', 'lsx' ), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>' ); ?> |
|
46 | + <?php edit_post_link(esc_html__('Edit', 'lsx'), '<footer class="entry-meta"><span class="edit-link">', '</span></footer>'); ?> |
|
47 | 47 | |
48 | 48 | <?php lsx_entry_bottom(); ?> |
49 | 49 |
@@ -17,8 +17,8 @@ discard block |
||
17 | 17 | |
18 | 18 | <?php lsx_content_top(); ?> |
19 | 19 | |
20 | - <?php if(have_posts()) { ?> |
|
21 | - <?php while(have_posts()) { the_post(); ?> |
|
20 | + <?php if (have_posts()) { ?> |
|
21 | + <?php while (have_posts()) { the_post(); ?> |
|
22 | 22 | <div class="entry-content"> |
23 | 23 | |
24 | 24 | <?php the_content(); ?> |
@@ -29,10 +29,10 @@ discard block |
||
29 | 29 | <?php } ?> |
30 | 30 | |
31 | 31 | <?php |
32 | - if ( get_query_var( 'paged' ) ) : |
|
33 | - $paged = get_query_var( 'paged' ); |
|
34 | - elseif ( get_query_var( 'page' ) ) : |
|
35 | - $paged = get_query_var( 'page' ); |
|
32 | + if (get_query_var('paged')) : |
|
33 | + $paged = get_query_var('paged'); |
|
34 | + elseif (get_query_var('page')) : |
|
35 | + $paged = get_query_var('page'); |
|
36 | 36 | else : |
37 | 37 | $paged = 1; |
38 | 38 | endif; |
@@ -41,18 +41,18 @@ discard block |
||
41 | 41 | 'post_type' => 'jetpack-portfolio', |
42 | 42 | 'posts_per_page' => 99, |
43 | 43 | ); |
44 | - $project_query = new WP_Query ( $args ); |
|
45 | - if ( post_type_exists( 'jetpack-portfolio' ) && $project_query -> have_posts() ) : |
|
44 | + $project_query = new WP_Query($args); |
|
45 | + if (post_type_exists('jetpack-portfolio') && $project_query -> have_posts()) : |
|
46 | 46 | ?> |
47 | 47 | |
48 | 48 | <?php lsx_portfolio_sorter(); ?> |
49 | 49 | |
50 | 50 | <div class="filter-items-wrapper lsx-portfolio-wrapper"> |
51 | 51 | <div class="filter-items-container lsx-portfolio masonry"> |
52 | - <?php while ( $project_query -> have_posts() ) : $project_query -> the_post(); ?> |
|
52 | + <?php while ($project_query -> have_posts()) : $project_query -> the_post(); ?> |
|
53 | 53 | |
54 | - <?php if(has_post_thumbnail()) { ?> |
|
55 | - <?php get_template_part( 'content', 'portfolio' ); ?> |
|
54 | + <?php if (has_post_thumbnail()) { ?> |
|
55 | + <?php get_template_part('content', 'portfolio'); ?> |
|
56 | 56 | <?php } ?> |
57 | 57 | |
58 | 58 | <?php endwhile; ?> |
@@ -63,17 +63,17 @@ discard block |
||
63 | 63 | |
64 | 64 | <section class="no-results not-found"> |
65 | 65 | <header class="page-header"> |
66 | - <h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'lsx' ); ?></h1> |
|
66 | + <h1 class="page-title"><?php esc_html_e('Nothing Found', 'lsx'); ?></h1> |
|
67 | 67 | </header><!-- .page-header --> |
68 | 68 | |
69 | 69 | <div class="page-content"> |
70 | - <?php if ( current_user_can( 'publish_posts' ) ) : ?> |
|
70 | + <?php if (current_user_can('publish_posts')) : ?> |
|
71 | 71 | |
72 | - <p><?php esc_html_e( 'Ready to publish your first project?', 'lsx' ); ?> <a href="<?php echo esc_url( admin_url( 'post-new.php?post_type=jetpack-portfolio' ) ) ?>"><?php esc_html_e( 'Get started here', 'lsx' ); ?></a></p> |
|
72 | + <p><?php esc_html_e('Ready to publish your first project?', 'lsx'); ?> <a href="<?php echo esc_url(admin_url('post-new.php?post_type=jetpack-portfolio')) ?>"><?php esc_html_e('Get started here', 'lsx'); ?></a></p> |
|
73 | 73 | |
74 | 74 | <?php else : ?> |
75 | 75 | |
76 | - <p><?php esc_html_e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'lsx' ); ?></p> |
|
76 | + <p><?php esc_html_e('It seems we can’t find what you’re looking for. Perhaps searching can help.', 'lsx'); ?></p> |
|
77 | 77 | <?php get_search_form(); ?> |
78 | 78 | |
79 | 79 | <?php endif; ?> |
@@ -33,8 +33,10 @@ discard block |
||
33 | 33 | $paged = get_query_var( 'paged' ); |
34 | 34 | elseif ( get_query_var( 'page' ) ) : |
35 | 35 | $paged = get_query_var( 'page' ); |
36 | - else : |
|
36 | + else { |
|
37 | + : |
|
37 | 38 | $paged = 1; |
39 | + } |
|
38 | 40 | endif; |
39 | 41 | |
40 | 42 | $args = array( |
@@ -59,11 +61,14 @@ discard block |
||
59 | 61 | </div> |
60 | 62 | </div><!-- .portfolio-wrapper --> |
61 | 63 | |
62 | - <?php else : ?> |
|
64 | + <?php else { |
|
65 | + : ?> |
|
63 | 66 | |
64 | 67 | <section class="no-results not-found"> |
65 | 68 | <header class="page-header"> |
66 | - <h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'lsx' ); ?></h1> |
|
69 | + <h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'lsx' ); |
|
70 | +} |
|
71 | +?></h1> |
|
67 | 72 | </header><!-- .page-header --> |
68 | 73 | |
69 | 74 | <div class="page-content"> |
@@ -71,9 +76,12 @@ discard block |
||
71 | 76 | |
72 | 77 | <p><?php esc_html_e( 'Ready to publish your first project?', 'lsx' ); ?> <a href="<?php echo esc_url( admin_url( 'post-new.php?post_type=jetpack-portfolio' ) ) ?>"><?php esc_html_e( 'Get started here', 'lsx' ); ?></a></p> |
73 | 78 | |
74 | - <?php else : ?> |
|
79 | + <?php else { |
|
80 | + : ?> |
|
75 | 81 | |
76 | - <p><?php esc_html_e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'lsx' ); ?></p> |
|
82 | + <p><?php esc_html_e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'lsx' ); |
|
83 | +} |
|
84 | +?></p> |
|
77 | 85 | <?php get_search_form(); ?> |
78 | 86 | |
79 | 87 | <?php endif; ?> |
@@ -8,19 +8,19 @@ |
||
8 | 8 | // This is to help the customizer function better |
9 | 9 | $style = ''; |
10 | 10 | |
11 | -if ( is_customize_preview() ) { |
|
12 | - $search_form = get_theme_mod( 'lsx_header_search', 0 ); |
|
11 | +if (is_customize_preview()) { |
|
12 | + $search_form = get_theme_mod('lsx_header_search', 0); |
|
13 | 13 | |
14 | - if ( ! $search_form ) { |
|
14 | + if ( ! $search_form) { |
|
15 | 15 | $style = 'display:none;'; |
16 | 16 | } |
17 | 17 | } |
18 | 18 | ?> |
19 | 19 | |
20 | -<form role="search" method="get" style="<?php echo esc_attr( $style ); ?>" class="search-form form-inline" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>"> |
|
20 | +<form role="search" method="get" style="<?php echo esc_attr($style); ?>" class="search-form form-inline" id="searchform" action="<?php echo esc_url(home_url('/')); ?>"> |
|
21 | 21 | <div class="input-group"> |
22 | - <input type="search" value="<?php if (is_search()) { echo get_search_query(); } ?>" name="s" class="search-field form-control" placeholder="<?php esc_attr_e( 'Search', 'lsx' ); ?> <?php echo esc_attr( get_bloginfo( 'name' ) ); ?>"> |
|
23 | - <label class="hide"><?php esc_attr_e( 'Search for:', 'lsx' ); ?></label> |
|
22 | + <input type="search" value="<?php if (is_search()) { echo get_search_query(); } ?>" name="s" class="search-field form-control" placeholder="<?php esc_attr_e('Search', 'lsx'); ?> <?php echo esc_attr(get_bloginfo('name')); ?>"> |
|
23 | + <label class="hide"><?php esc_attr_e('Search for:', 'lsx'); ?></label> |
|
24 | 24 | <span class="input-group-btn"> |
25 | 25 | <button type="submit" class="search-submit btn btn-default"><span class="fa fa-search"></span></button> |
26 | 26 | </span> |
@@ -1,24 +1,24 @@ |
||
1 | 1 | <?php |
2 | - if ( isset( $GLOBALS['comment_depth'] ) ) { |
|
3 | - $depth = intval( $GLOBALS['comment_depth'] ); |
|
2 | + if (isset($GLOBALS['comment_depth'])) { |
|
3 | + $depth = intval($GLOBALS['comment_depth']); |
|
4 | 4 | } else { |
5 | 5 | $depth = 1; |
6 | 6 | } |
7 | 7 | |
8 | - $max_depth = intval( get_option( 'thread_comments_depth' ) ); |
|
8 | + $max_depth = intval(get_option('thread_comments_depth')); |
|
9 | 9 | ?> |
10 | 10 | |
11 | 11 | <?php echo get_avatar($comment, '64'); ?> |
12 | 12 | <div class="media-body"> |
13 | 13 | <h4 class="media-heading"><?php echo get_comment_author_link(); ?></h4> |
14 | - <time datetime="<?php echo comment_date('c'); ?>"><a href="<?php echo esc_url(get_comment_link($comment->comment_ID)); ?>"><?php printf(esc_html__('%1$s on %2$s', 'lsx'), get_comment_date(), get_comment_time()); ?></a></time> |
|
14 | + <time datetime="<?php echo comment_date('c'); ?>"><a href="<?php echo esc_url(get_comment_link($comment->comment_ID)); ?>"><?php printf(esc_html__('%1$s on %2$s', 'lsx'), get_comment_date(), get_comment_time()); ?></a></time> |
|
15 | 15 | <?php edit_comment_link(esc_html__('(Edit)', 'lsx'), '', ''); ?> |
16 | 16 | |
17 | - <?php if ( '0' == $comment->comment_approved ) : ?> |
|
17 | + <?php if ('0' == $comment->comment_approved) : ?> |
|
18 | 18 | <div class="alert alert-info"> |
19 | 19 | <?php esc_html_e('Your comment is awaiting moderation.', 'lsx'); ?> |
20 | 20 | </div> |
21 | 21 | <?php endif; ?> |
22 | 22 | |
23 | 23 | <?php comment_text(); ?> |
24 | -<?php comment_reply_link( array( 'depth' => $depth, 'max_depth' => $max_depth ) ); |
|
25 | 24 | \ No newline at end of file |
25 | +<?php comment_reply_link(array('depth' => $depth, 'max_depth' => $max_depth)); |
|
26 | 26 | \ No newline at end of file |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | * @category styles |
126 | 126 | */ |
127 | 127 | function lsx_sensei_styles() { |
128 | - wp_enqueue_style( 'sensei', get_template_directory_uri() . '/css/sensei.css', array(), LSX_VERSION ); |
|
128 | + wp_enqueue_style( 'sensei', get_template_directory_uri() . '/css/sensei.css', array(), LSX_VERSION ); |
|
129 | 129 | } |
130 | 130 | add_action( 'wp_enqueue_scripts', 'lsx_sensei_styles' ); |
131 | 131 | |
@@ -136,10 +136,10 @@ discard block |
||
136 | 136 | * @category styles |
137 | 137 | */ |
138 | 138 | function lsx_sensei_redirect_to_home( $query ){ |
139 | - if(!is_admin() && is_post_type_archive( 'lesson' ) ) { |
|
140 | - wp_redirect( home_url() . '/courses-overview' ); |
|
141 | - exit; |
|
142 | - } |
|
139 | + if(!is_admin() && is_post_type_archive( 'lesson' ) ) { |
|
140 | + wp_redirect( home_url() . '/courses-overview' ); |
|
141 | + exit; |
|
142 | + } |
|
143 | 143 | } |
144 | 144 | add_action( 'parse_query', 'lsx_sensei_redirect_to_home' ); |
145 | 145 |
@@ -12,26 +12,26 @@ discard block |
||
12 | 12 | * Hooks |
13 | 13 | */ |
14 | 14 | |
15 | -remove_action( 'sensei_before_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper' ), 10 ); |
|
16 | -remove_action( 'sensei_after_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper_end' ), 10 ); |
|
15 | +remove_action('sensei_before_main_content', array($woothemes_sensei->frontend, 'sensei_output_content_wrapper'), 10); |
|
16 | +remove_action('sensei_after_main_content', array($woothemes_sensei->frontend, 'sensei_output_content_wrapper_end'), 10); |
|
17 | 17 | |
18 | 18 | add_action('sensei_before_main_content', 'lsx_sensei_before_content', 10); |
19 | 19 | add_action('sensei_after_main_content', 'lsx_sensei_after_content', 10); |
20 | 20 | |
21 | 21 | //Switching the course filters and the headers around |
22 | -remove_action('sensei_archive_before_course_loop', array( 'Sensei_Course', 'archive_header' ), 10, 0 ); |
|
23 | -remove_action ( 'sensei_archive_before_course_loop' , array( 'Sensei_Course', 'course_archive_sorting' ) ); |
|
24 | -remove_action ( 'sensei_archive_before_course_loop' , array( 'Sensei_Course', 'course_archive_filters' ) ); |
|
25 | -add_action('sensei_archive_before_course_loop', array( 'Sensei_Course', 'archive_header' ), 11, 0 ); |
|
26 | -add_action ( 'sensei_archive_before_course_loop' , array( 'Sensei_Course', 'course_archive_sorting' ),12 ); |
|
27 | -add_action ( 'sensei_archive_before_course_loop' , array( 'Sensei_Course', 'course_archive_filters' ),12 ); |
|
22 | +remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'archive_header'), 10, 0); |
|
23 | +remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_sorting')); |
|
24 | +remove_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_filters')); |
|
25 | +add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'archive_header'), 11, 0); |
|
26 | +add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_sorting'), 12); |
|
27 | +add_action('sensei_archive_before_course_loop', array('Sensei_Course', 'course_archive_filters'), 12); |
|
28 | 28 | |
29 | 29 | // Moving course image up in DOM |
30 | -remove_action('sensei_course_content_inside_before', array( Sensei()->course, 'course_image' ) ,10, 1 ); |
|
31 | -add_action('sensei_course_content_inside_before', array( Sensei()->course, 'course_image' ) ,1, 1 ); |
|
30 | +remove_action('sensei_course_content_inside_before', array(Sensei()->course, 'course_image'), 10, 1); |
|
31 | +add_action('sensei_course_content_inside_before', array(Sensei()->course, 'course_image'), 1, 1); |
|
32 | 32 | |
33 | -remove_action( 'sensei_single_course_content_inside_before', array( Sensei()->course , 'course_image'), 20 ); |
|
34 | -add_action( 'sensei_single_course_content_inside_before', array( Sensei()->course , 'course_image'), 12 ); |
|
33 | +remove_action('sensei_single_course_content_inside_before', array(Sensei()->course, 'course_image'), 20); |
|
34 | +add_action('sensei_single_course_content_inside_before', array(Sensei()->course, 'course_image'), 12); |
|
35 | 35 | |
36 | 36 | /** |
37 | 37 | * Adds the top and primary divs for the layout. |
@@ -39,22 +39,22 @@ discard block |
||
39 | 39 | * @subpackage sensei |
40 | 40 | * @category layout |
41 | 41 | */ |
42 | -function lsx_sensei_wp_head(){ |
|
42 | +function lsx_sensei_wp_head() { |
|
43 | 43 | |
44 | - $layout = get_theme_mod('lsx_layout','2cr'); |
|
45 | - $layout = apply_filters( 'lsx_layout', $layout ); |
|
44 | + $layout = get_theme_mod('lsx_layout', '2cr'); |
|
45 | + $layout = apply_filters('lsx_layout', $layout); |
|
46 | 46 | |
47 | - if('1c' === $layout && is_post_type_archive(array('course','lesson'))) { |
|
48 | - add_action('sensei_archive_before_course_loop', 'lsx_breadcrumbs', 11 ); |
|
47 | + if ('1c' === $layout && is_post_type_archive(array('course', 'lesson'))) { |
|
48 | + add_action('sensei_archive_before_course_loop', 'lsx_breadcrumbs', 11); |
|
49 | 49 | } |
50 | 50 | |
51 | - if('1c' === $layout && is_tax(array('module','course-category'))) { |
|
51 | + if ('1c' === $layout && is_tax(array('module', 'course-category'))) { |
|
52 | 52 | remove_action('lsx_content_top', 'lsx_breadcrumbs'); |
53 | - add_action( 'sensei_loop_course_before', 'lsx_breadcrumbs', 80 , 1 ); |
|
53 | + add_action('sensei_loop_course_before', 'lsx_breadcrumbs', 80, 1); |
|
54 | 54 | |
55 | - if(is_tax('module')){ |
|
56 | - remove_action( 'sensei_content_lesson_inside_before', array( 'Sensei_Lesson', 'the_lesson_meta' ), 20 ); |
|
57 | - add_action( 'sensei_content_lesson_inside_before', array( 'Sensei_Lesson', 'the_lesson_meta' ), 40 ); |
|
55 | + if (is_tax('module')) { |
|
56 | + remove_action('sensei_content_lesson_inside_before', array('Sensei_Lesson', 'the_lesson_meta'), 20); |
|
57 | + add_action('sensei_content_lesson_inside_before', array('Sensei_Lesson', 'the_lesson_meta'), 40); |
|
58 | 58 | |
59 | 59 | remove_action('sensei_content_lesson_inside_before', array('Sensei_Core_Modules', 'module_archive_description'), 11); |
60 | 60 | } |
@@ -73,10 +73,10 @@ discard block |
||
73 | 73 | * @subpackage sensei |
74 | 74 | * @category layout |
75 | 75 | */ |
76 | -function lsx_sensei_before_content(){ ?> |
|
76 | +function lsx_sensei_before_content() { ?> |
|
77 | 77 | <?php lsx_content_wrap_before(); ?> |
78 | 78 | |
79 | - <div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>"> |
|
79 | + <div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>"> |
|
80 | 80 | |
81 | 81 | <?php lsx_content_before(); ?> |
82 | 82 | |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | * @subpackage sensei |
93 | 93 | * @category layout |
94 | 94 | */ |
95 | -function lsx_sensei_after_content(){ ?> |
|
95 | +function lsx_sensei_after_content() { ?> |
|
96 | 96 | <?php lsx_content_bottom(); ?> |
97 | 97 | |
98 | 98 | </main><!-- #main --> |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | * @subpackage sensei |
117 | 117 | * @category redirect |
118 | 118 | */ |
119 | -add_filter( 'sensei_disable_styles', '__return_true' ); |
|
119 | +add_filter('sensei_disable_styles', '__return_true'); |
|
120 | 120 | |
121 | 121 | /** |
122 | 122 | * Includes the sensei specific styles. |
@@ -125,9 +125,9 @@ discard block |
||
125 | 125 | * @category styles |
126 | 126 | */ |
127 | 127 | function lsx_sensei_styles() { |
128 | - wp_enqueue_style( 'sensei', get_template_directory_uri() . '/css/sensei.css', array(), LSX_VERSION ); |
|
128 | + wp_enqueue_style('sensei', get_template_directory_uri() . '/css/sensei.css', array(), LSX_VERSION); |
|
129 | 129 | } |
130 | -add_action( 'wp_enqueue_scripts', 'lsx_sensei_styles' ); |
|
130 | +add_action('wp_enqueue_scripts', 'lsx_sensei_styles'); |
|
131 | 131 | |
132 | 132 | /** |
133 | 133 | * Redirects Lessons Archive to Courses Overview |
@@ -135,13 +135,13 @@ discard block |
||
135 | 135 | * @subpackage woocommerce |
136 | 136 | * @category styles |
137 | 137 | */ |
138 | -function lsx_sensei_redirect_to_home( $query ){ |
|
139 | - if(!is_admin() && is_post_type_archive( 'lesson' ) ) { |
|
140 | - wp_redirect( home_url() . '/courses-overview' ); |
|
138 | +function lsx_sensei_redirect_to_home($query) { |
|
139 | + if ( ! is_admin() && is_post_type_archive('lesson')) { |
|
140 | + wp_redirect(home_url() . '/courses-overview'); |
|
141 | 141 | exit; |
142 | 142 | } |
143 | 143 | } |
144 | -add_action( 'parse_query', 'lsx_sensei_redirect_to_home' ); |
|
144 | +add_action('parse_query', 'lsx_sensei_redirect_to_home'); |
|
145 | 145 | |
146 | 146 | /** |
147 | 147 | * Filters the archive title |
@@ -149,10 +149,10 @@ discard block |
||
149 | 149 | * @subpackage woocommerce |
150 | 150 | * @category styles |
151 | 151 | */ |
152 | -function lsx_sensei_category_title( $html,$term_id ){ |
|
153 | - $html = str_replace('h2','h1',$html); |
|
154 | - $html = str_replace('sensei-category-title','archive-title',$html); |
|
152 | +function lsx_sensei_category_title($html, $term_id) { |
|
153 | + $html = str_replace('h2', 'h1', $html); |
|
154 | + $html = str_replace('sensei-category-title', 'archive-title', $html); |
|
155 | 155 | |
156 | - return '<header class="archive-header">'.$html.'</header>'; |
|
156 | + return '<header class="archive-header">' . $html . '</header>'; |
|
157 | 157 | } |
158 | -add_filter( 'course_category_title', 'lsx_sensei_category_title',1,10 ); |
|
159 | 158 | \ No newline at end of file |
159 | +add_filter('course_category_title', 'lsx_sensei_category_title', 1, 10); |
|
160 | 160 | \ No newline at end of file |
@@ -14,6 +14,6 @@ |
||
14 | 14 | */ |
15 | 15 | |
16 | 16 | function lsx_wp_job_manager_styles() { |
17 | - wp_enqueue_style( 'wp_job_manager', get_template_directory_uri() . '/css/wp-job-manager.css', array(), LSX_VERSION ); |
|
17 | + wp_enqueue_style( 'wp_job_manager', get_template_directory_uri() . '/css/wp-job-manager.css', array(), LSX_VERSION ); |
|
18 | 18 | } |
19 | 19 | add_action( 'wp_enqueue_scripts', 'lsx_wp_job_manager_styles' ); |
20 | 20 | \ No newline at end of file |
@@ -14,6 +14,6 @@ |
||
14 | 14 | */ |
15 | 15 | |
16 | 16 | function lsx_wp_job_manager_styles() { |
17 | - wp_enqueue_style( 'wp_job_manager', get_template_directory_uri() . '/css/wp-job-manager.css', array(), LSX_VERSION ); |
|
17 | + wp_enqueue_style('wp_job_manager', get_template_directory_uri() . '/css/wp-job-manager.css', array(), LSX_VERSION); |
|
18 | 18 | } |
19 | -add_action( 'wp_enqueue_scripts', 'lsx_wp_job_manager_styles' ); |
|
20 | 19 | \ No newline at end of file |
20 | +add_action('wp_enqueue_scripts', 'lsx_wp_job_manager_styles'); |
|
21 | 21 | \ No newline at end of file |
@@ -69,8 +69,8 @@ |
||
69 | 69 | add_filter( 'woocommerce_enqueue_styles', '__return_empty_array' ); |
70 | 70 | |
71 | 71 | function lsx_woocommerce_styles() { |
72 | - wp_enqueue_style( 'woocommerce-layout', get_template_directory_uri() . '/css/woocommerce-layout.css', array(), LSX_VERSION, 'all' ); |
|
73 | - wp_enqueue_style( 'woocommerce-smallscreen', get_template_directory_uri() . '/css/woocommerce-smallscreen.css', array( 'woocommerce-layout' ), LSX_VERSION, 'only screen and (max-width: 767px)' ); |
|
74 | - wp_enqueue_style( 'woocommerce-general', get_template_directory_uri() . '/css/woocommerce.css', array(), LSX_VERSION, 'all' ); |
|
72 | + wp_enqueue_style( 'woocommerce-layout', get_template_directory_uri() . '/css/woocommerce-layout.css', array(), LSX_VERSION, 'all' ); |
|
73 | + wp_enqueue_style( 'woocommerce-smallscreen', get_template_directory_uri() . '/css/woocommerce-smallscreen.css', array( 'woocommerce-layout' ), LSX_VERSION, 'only screen and (max-width: 767px)' ); |
|
74 | + wp_enqueue_style( 'woocommerce-general', get_template_directory_uri() . '/css/woocommerce.css', array(), LSX_VERSION, 'all' ); |
|
75 | 75 | } |
76 | 76 | add_action( 'wp_enqueue_scripts', 'lsx_woocommerce_styles' ); |
77 | 77 | \ No newline at end of file |
@@ -9,8 +9,8 @@ discard block |
||
9 | 9 | /* |
10 | 10 | * Hooks |
11 | 11 | */ |
12 | -remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10); |
|
13 | -remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10); |
|
12 | +remove_action('woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10); |
|
13 | +remove_action('woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10); |
|
14 | 14 | |
15 | 15 | add_action('woocommerce_before_main_content', 'lsx_woocommerce_before_content', 10); |
16 | 16 | add_action('woocommerce_after_main_content', 'lsx_woocommerce_after_content', 10); |
@@ -25,10 +25,10 @@ discard block |
||
25 | 25 | * @subpackage woocommerce |
26 | 26 | * @category layout |
27 | 27 | */ |
28 | -function lsx_woocommerce_before_content(){ ?> |
|
28 | +function lsx_woocommerce_before_content() { ?> |
|
29 | 29 | <?php lsx_content_wrap_before(); ?> |
30 | 30 | |
31 | - <div id="primary" class="content-area <?php echo esc_attr( lsx_main_class() ); ?>"> |
|
31 | + <div id="primary" class="content-area <?php echo esc_attr(lsx_main_class()); ?>"> |
|
32 | 32 | |
33 | 33 | <?php lsx_content_before(); ?> |
34 | 34 | |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | * @subpackage woocommerce |
44 | 44 | * @category layout |
45 | 45 | */ |
46 | -function lsx_woocommerce_after_content(){ ?> |
|
46 | +function lsx_woocommerce_after_content() { ?> |
|
47 | 47 | <?php lsx_content_bottom(); ?> |
48 | 48 | |
49 | 49 | </main><!-- #main --> |
@@ -66,11 +66,11 @@ discard block |
||
66 | 66 | * @subpackage woocommerce |
67 | 67 | * @category styles |
68 | 68 | */ |
69 | -add_filter( 'woocommerce_enqueue_styles', '__return_empty_array' ); |
|
69 | +add_filter('woocommerce_enqueue_styles', '__return_empty_array'); |
|
70 | 70 | |
71 | 71 | function lsx_woocommerce_styles() { |
72 | - wp_enqueue_style( 'woocommerce-layout', get_template_directory_uri() . '/css/woocommerce-layout.css', array(), LSX_VERSION, 'all' ); |
|
73 | - wp_enqueue_style( 'woocommerce-smallscreen', get_template_directory_uri() . '/css/woocommerce-smallscreen.css', array( 'woocommerce-layout' ), LSX_VERSION, 'only screen and (max-width: 767px)' ); |
|
74 | - wp_enqueue_style( 'woocommerce-general', get_template_directory_uri() . '/css/woocommerce.css', array(), LSX_VERSION, 'all' ); |
|
72 | + wp_enqueue_style('woocommerce-layout', get_template_directory_uri() . '/css/woocommerce-layout.css', array(), LSX_VERSION, 'all'); |
|
73 | + wp_enqueue_style('woocommerce-smallscreen', get_template_directory_uri() . '/css/woocommerce-smallscreen.css', array('woocommerce-layout'), LSX_VERSION, 'only screen and (max-width: 767px)'); |
|
74 | + wp_enqueue_style('woocommerce-general', get_template_directory_uri() . '/css/woocommerce.css', array(), LSX_VERSION, 'all'); |
|
75 | 75 | } |
76 | -add_action( 'wp_enqueue_scripts', 'lsx_woocommerce_styles' ); |
|
77 | 76 | \ No newline at end of file |
77 | +add_action('wp_enqueue_scripts', 'lsx_woocommerce_styles'); |
|
78 | 78 | \ No newline at end of file |