@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Custom functions that act independently of the theme templates. |
|
4 | - * |
|
5 | - * Eventually, some of the functionality here could be replaced by core features. |
|
6 | - * |
|
7 | - * @package Lighthouse |
|
8 | - */ |
|
3 | + * Custom functions that act independently of the theme templates. |
|
4 | + * |
|
5 | + * Eventually, some of the functionality here could be replaced by core features. |
|
6 | + * |
|
7 | + * @package Lighthouse |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | /** |
11 | 11 | * Adds custom classes to the array of body classes. |
@@ -1,16 +1,16 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * The main template file. |
|
4 | - * |
|
5 | - * This is the most generic template file in a WordPress theme |
|
6 | - * and one of the two required files for a theme (the other being style.css). |
|
7 | - * It is used to display a page when nothing more specific matches a query. |
|
8 | - * E.g., it puts together the home page when no home.php file exists. |
|
9 | - * |
|
10 | - * @link https://codex.wordpress.org/Template_Hierarchy |
|
11 | - * |
|
12 | - * @package Lighthouse |
|
13 | - */ |
|
3 | + * The main template file. |
|
4 | + * |
|
5 | + * This is the most generic template file in a WordPress theme |
|
6 | + * and one of the two required files for a theme (the other being style.css). |
|
7 | + * It is used to display a page when nothing more specific matches a query. |
|
8 | + * E.g., it puts together the home page when no home.php file exists. |
|
9 | + * |
|
10 | + * @link https://codex.wordpress.org/Template_Hierarchy |
|
11 | + * |
|
12 | + * @package Lighthouse |
|
13 | + */ |
|
14 | 14 | |
15 | 15 | get_header(); ?> |
16 | 16 |
@@ -1,16 +1,16 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * The template for displaying all pages. |
|
4 | - * |
|
5 | - * This is the template that displays all pages by default. |
|
6 | - * Please note that this is the WordPress construct of pages |
|
7 | - * and that other 'pages' on your WordPress site may use a |
|
8 | - * different template. |
|
9 | - * |
|
10 | - * @link https://codex.wordpress.org/Template_Hierarchy |
|
11 | - * |
|
12 | - * @package Lighthouse |
|
13 | - */ |
|
3 | + * The template for displaying all pages. |
|
4 | + * |
|
5 | + * This is the template that displays all pages by default. |
|
6 | + * Please note that this is the WordPress construct of pages |
|
7 | + * and that other 'pages' on your WordPress site may use a |
|
8 | + * different template. |
|
9 | + * |
|
10 | + * @link https://codex.wordpress.org/Template_Hierarchy |
|
11 | + * |
|
12 | + * @package Lighthouse |
|
13 | + */ |
|
14 | 14 | |
15 | 15 | get_header(); ?> |
16 | 16 |
@@ -1,11 +1,11 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Custom template tags for this theme. |
|
4 | - * |
|
5 | - * Eventually, some of the functionality here could be replaced by core features. |
|
6 | - * |
|
7 | - * @package Lighthouse |
|
8 | - */ |
|
3 | + * Custom template tags for this theme. |
|
4 | + * |
|
5 | + * Eventually, some of the functionality here could be replaced by core features. |
|
6 | + * |
|
7 | + * @package Lighthouse |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | if ( ! function_exists( 'lighthouse_posted_on' ) ) : |
11 | 11 | /** |
@@ -125,16 +125,16 @@ discard block |
||
125 | 125 | */ |
126 | 126 | //Left menu |
127 | 127 | function lighthouse_header_menu_left() { |
128 | - if ( has_nav_menu( 'header-menu-left' ) ) { |
|
129 | - wp_nav_menu( |
|
130 | - array( |
|
131 | - 'theme_location' => 'header-menu-left', |
|
132 | - 'menu' => '', |
|
133 | - 'container' => 'div', |
|
134 | - 'container_id' => 'header-menu-left-id', |
|
135 | - 'container_class' => 'header-menu-left-cl', |
|
136 | - 'menu_id' => 'header-menu-id', |
|
137 | - 'menu_class' => 'header-menu-cl', |
|
128 | + if ( has_nav_menu( 'header-menu-left' ) ) { |
|
129 | + wp_nav_menu( |
|
130 | + array( |
|
131 | + 'theme_location' => 'header-menu-left', |
|
132 | + 'menu' => '', |
|
133 | + 'container' => 'div', |
|
134 | + 'container_id' => 'header-menu-left-id', |
|
135 | + 'container_class' => 'header-menu-left-cl', |
|
136 | + 'menu_id' => 'header-menu-id', |
|
137 | + 'menu_class' => 'header-menu-cl', |
|
138 | 138 | 'echo' => true, |
139 | 139 | 'fallback_cb' => '', |
140 | 140 | 'before' => '', |
@@ -144,23 +144,23 @@ discard block |
||
144 | 144 | 'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>', |
145 | 145 | 'depth' => 0, |
146 | 146 | 'walker' => '' |
147 | - ) |
|
148 | - ); |
|
149 | - } |
|
147 | + ) |
|
148 | + ); |
|
149 | + } |
|
150 | 150 | } |
151 | 151 | |
152 | 152 | //Right menu |
153 | 153 | function lighthouse_header_menu_right() { |
154 | - if ( has_nav_menu( 'header-menu-right' ) ) { |
|
155 | - wp_nav_menu( |
|
156 | - array( |
|
157 | - 'theme_location' => 'header-menu-right', |
|
158 | - 'menu' => '', |
|
159 | - 'container' => 'div', |
|
160 | - 'container_id' => 'header-menu-right-id', |
|
161 | - 'container_class' => 'header-menu-right-cl', |
|
162 | - 'menu_id' => 'header-menu-id', |
|
163 | - 'menu_class' => 'header-menu-cl', |
|
154 | + if ( has_nav_menu( 'header-menu-right' ) ) { |
|
155 | + wp_nav_menu( |
|
156 | + array( |
|
157 | + 'theme_location' => 'header-menu-right', |
|
158 | + 'menu' => '', |
|
159 | + 'container' => 'div', |
|
160 | + 'container_id' => 'header-menu-right-id', |
|
161 | + 'container_class' => 'header-menu-right-cl', |
|
162 | + 'menu_id' => 'header-menu-id', |
|
163 | + 'menu_class' => 'header-menu-cl', |
|
164 | 164 | 'echo' => true, |
165 | 165 | 'fallback_cb' => '', |
166 | 166 | 'before' => '', |
@@ -170,23 +170,23 @@ discard block |
||
170 | 170 | 'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>', |
171 | 171 | 'depth' => 0, |
172 | 172 | 'walker' => '' |
173 | - ) |
|
174 | - ); |
|
175 | - } |
|
173 | + ) |
|
174 | + ); |
|
175 | + } |
|
176 | 176 | } |
177 | 177 | |
178 | 178 | //Fotter menu |
179 | 179 | function lighthouse_footer_menu() { |
180 | - if ( has_nav_menu( 'footer-menu' ) ) { |
|
181 | - wp_nav_menu( |
|
182 | - array( |
|
183 | - 'theme_location' => 'footer-menu', |
|
184 | - 'menu' => '', |
|
185 | - 'container' => 'div', |
|
186 | - 'container_id' => 'footer-menu-id', |
|
187 | - 'container_class' => 'footer-menu-cl', |
|
188 | - 'menu_id' => 'footer-menu-id', |
|
189 | - 'menu_class' => 'footer-menu-cl', |
|
180 | + if ( has_nav_menu( 'footer-menu' ) ) { |
|
181 | + wp_nav_menu( |
|
182 | + array( |
|
183 | + 'theme_location' => 'footer-menu', |
|
184 | + 'menu' => '', |
|
185 | + 'container' => 'div', |
|
186 | + 'container_id' => 'footer-menu-id', |
|
187 | + 'container_class' => 'footer-menu-cl', |
|
188 | + 'menu_id' => 'footer-menu-id', |
|
189 | + 'menu_class' => 'footer-menu-cl', |
|
190 | 190 | 'echo' => true, |
191 | 191 | 'fallback_cb' => '', |
192 | 192 | 'before' => '', |
@@ -196,23 +196,23 @@ discard block |
||
196 | 196 | 'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>', |
197 | 197 | 'depth' => 0, |
198 | 198 | 'walker' => '' |
199 | - ) |
|
200 | - ); |
|
201 | - } |
|
199 | + ) |
|
200 | + ); |
|
201 | + } |
|
202 | 202 | } |
203 | 203 | |
204 | 204 | //Menu footer-bottom |
205 | 205 | function lighthouse_footer_menu_bottom() { |
206 | - if ( has_nav_menu( 'footer-menu-bottom' ) ) { |
|
207 | - wp_nav_menu( |
|
208 | - array( |
|
209 | - 'theme_location' => 'footer-menu-bottom', |
|
210 | - 'menu' => '', |
|
211 | - 'container' => 'div', |
|
212 | - 'container_id' => 'footer-menu-bottom-id', |
|
213 | - 'container_class' => 'footer-menu-bottom-cl', |
|
214 | - 'menu_id' => 'footer-menu-id', |
|
215 | - 'menu_class' => 'footer-menu-cl', |
|
206 | + if ( has_nav_menu( 'footer-menu-bottom' ) ) { |
|
207 | + wp_nav_menu( |
|
208 | + array( |
|
209 | + 'theme_location' => 'footer-menu-bottom', |
|
210 | + 'menu' => '', |
|
211 | + 'container' => 'div', |
|
212 | + 'container_id' => 'footer-menu-bottom-id', |
|
213 | + 'container_class' => 'footer-menu-bottom-cl', |
|
214 | + 'menu_id' => 'footer-menu-id', |
|
215 | + 'menu_class' => 'footer-menu-cl', |
|
216 | 216 | 'echo' => true, |
217 | 217 | 'fallback_cb' => '', |
218 | 218 | 'before' => '', |
@@ -222,9 +222,9 @@ discard block |
||
222 | 222 | 'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>', |
223 | 223 | 'depth' => 0, |
224 | 224 | 'walker' => '' |
225 | - ) |
|
226 | - ); |
|
227 | - } |
|
225 | + ) |
|
226 | + ); |
|
227 | + } |
|
228 | 228 | } |
229 | 229 | |
230 | 230 |
@@ -1,9 +1,9 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Template Name: Template with Visual Editor |
|
4 | - * |
|
5 | - * @package Lighthouse |
|
6 | - */ |
|
3 | + * Template Name: Template with Visual Editor |
|
4 | + * |
|
5 | + * @package Lighthouse |
|
6 | + */ |
|
7 | 7 | get_header(); ?> |
8 | 8 | |
9 | 9 | <div class="container"> |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * The template for displaying search results pages. |
|
4 | - * |
|
5 | - * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result |
|
6 | - * |
|
7 | - * @package Lighthouse |
|
8 | - */ |
|
3 | + * The template for displaying search results pages. |
|
4 | + * |
|
5 | + * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result |
|
6 | + * |
|
7 | + * @package Lighthouse |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | get_header(); ?> |
11 | 11 |
@@ -1,11 +1,11 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Template part for displaying a message that posts cannot be found. |
|
4 | - * |
|
5 | - * @link https://codex.wordpress.org/Template_Hierarchy |
|
6 | - * |
|
7 | - * @package Lighthouse |
|
8 | - */ |
|
3 | + * Template part for displaying a message that posts cannot be found. |
|
4 | + * |
|
5 | + * @link https://codex.wordpress.org/Template_Hierarchy |
|
6 | + * |
|
7 | + * @package Lighthouse |
|
8 | + */ |
|
9 | 9 | |
10 | 10 | ?> |
11 | 11 |