Passed
Push — master ( 158865...7b75c8 )
by Warwick
02:20
created

hooks.php ➔ lsx_header_wrap_after()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * LSX functions and definitions - Hooks.
4
 *
5
 * @package    lsx
6
 * @subpackage hooks
7
 */
8
9
if ( ! defined( 'ABSPATH' ) ) {
10
	exit;
11
}
12
13
/**
14
 * This is the 1st action in the theme that fires after <head>.
15
 */
16
function lsx_head_top() {
17
	do_action( 'lsx_head_top' );
18
}
19
20
/**
21
 * This is the 2nd action that fires before wp_head() and </head>.
22
 *
23
 * @return void
24
 */
25
function lsx_head_bottom() {
26
	do_action( 'lsx_head_bottom' );
27
}
28
29
/**
30
 * The 3rd action thta fires after <body>
31
 */
32
function lsx_body_top() {
33
	do_action( 'lsx_body_top' );
34
}
35
36
/**
37
 * The 4th action that fires after <div class="header-wrap">.
38
 *
39
 * $lsx_supports[] = 'header';
40
 */
41
function lsx_header_before() {
42
	do_action( 'lsx_header_before' );
43
}
44
45
/**
46
 * The 5th action that fires after <header>
47
 *
48
 * @return void
49
 */
50
function lsx_header_top() {
51
	do_action( 'lsx_header_top' );
52
}
53
54
/**
55
 * The 6th action fires before lsx_nav_menu().
56
 *
57
 * @return void
58
 */
59
function lsx_nav_before() {
60
	do_action( 'lsx_nav_before' );
61
}
62
63
/**
64
 * The 7th action fires after  lsx_nav_menu().
65
 *
66
 * @return void
67
 */
68
function lsx_nav_after() {
69
	do_action( 'lsx_nav_after' );
70
}
71
72
/**
73
 * The 8th action that fires directly after lsx_nav_after().
74
 *
75
 * @return void
76
 */
77
function lsx_header_bottom() {
78
	do_action( 'lsx_header_bottom' );
79
}
80
81
/**
82
 * The 9th action that fires directly after </header>.
83
 *
84
 * @return void
85
 */
86
function lsx_header_after() {
87
	do_action( 'lsx_header_after' );
88
}
89
90
/**
91
 * The 10th action which fires before the <div class="wrap container" role="document" tabindex="-1">.
92
 *
93
 * @return void
94
 */
95
function lsx_header_wrap_after() {
96
	do_action( 'lsx_header_wrap_after' );
97
}
98
99
/**
100
 * Body Bottom
101
 *
102
 * @return void
103
 */
104
function lsx_body_bottom() {
105
	do_action( 'lsx_body_bottom' );
106
}
107
108
/**
109
 * Semantic <content> hooks
110
 *
111
 * $lsx_supports[] = 'banner';
112
 */
113
function lsx_banner_content() {
114
	do_action( 'lsx_banner_content' );
115
}
116
117
/**
118
 * Banner Inner top
119
 *
120
 * @return void
121
 */
122
function lsx_banner_inner_top() {
123
	do_action( 'lsx_banner_inner_top' );
124
}
125
126
/**
127
 * Banner Inner bottom
128
 *
129
 * @return void
130
 */
131
function lsx_banner_inner_bottom() {
132
	do_action( 'lsx_banner_inner_bottom' );
133
}
134
135
/**
136
 * Semantic <content> hooks
137
 *
138
 * $lsx_supports[] = 'global_header';
139
 */
140
function lsx_global_header_inner_bottom() {
141
	do_action( 'lsx_global_header_inner_bottom' );
142
}
143
144
/**
145
 * Semantic <content> hooks
146
 *
147
 * $lsx_supports[] = 'content';
148
 */
149
function lsx_content_wrap_before() {
150
	do_action( 'lsx_content_wrap_before' );
151
}
152
153
/**
154
 * Content Wrap After
155
 *
156
 * @return void
157
 */
158
function lsx_content_wrap_after() {
159
	do_action( 'lsx_content_wrap_after' );
160
}
161
162
/**
163
 * Content before
164
 *
165
 * @return void
166
 */
167
function lsx_content_before() {
168
	do_action( 'lsx_content_before' );
169
}
170
171
/**
172
 * Content After
173
 *
174
 * @return void
175
 */
176
function lsx_content_after() {
177
	do_action( 'lsx_content_after' );
178
}
179
180
/**
181
 * Content Top
182
 *
183
 * @return void
184
 */
185
function lsx_content_top() {
186
	do_action( 'lsx_content_top' );
187
}
188
189
/**
190
 * Content Bottom
191
 *
192
 * @return void
193
 */
194
function lsx_content_bottom() {
195
	do_action( 'lsx_content_bottom' );
196
}
197
198
/**
199
 * Content Post tags
200
 *
201
 * @return void
202
 */
203
function lsx_content_post_tags() {
204
	do_action( 'lsx_content_post_tags' );
205
}
206
207
/**
208
 * Content Sharing
209
 *
210
 * @return void
211
 */
212
function lsx_content_sharing() {
213
	do_action( 'lsx_content_sharing' );
214
}
215
216
/**
217
 * Semantic <entry> hooks
218
 *
219
 * $lsx_supports[] = 'entry';
220
 */
221
function lsx_entry_before() {
222
	do_action( 'lsx_entry_before' );
223
}
224
225
/**
226
 * Entry After
227
 *
228
 * @return void
229
 */
230
function lsx_entry_after() {
231
	do_action( 'lsx_entry_after' );
232
}
233
234
/**
235
 * Entry Top
236
 *
237
 * @return void
238
 */
239
function lsx_entry_top() {
240
	do_action( 'lsx_entry_top' );
241
}
242
243
/**
244
 * Entry Bottom
245
 *
246
 * @return void
247
 */
248
function lsx_entry_bottom() {
249
	do_action( 'lsx_entry_bottom' );
250
}
251
252
/**
253
 * Semantic <entry> hooks
254
 */
255
function lsx_post_meta_top() {
256
	do_action( 'lsx_post_meta_top' );
257
}
258
259
/**
260
 * Widget Semantic <entry> hooks
261
 *
262
 * $lsx_supports[] = 'entry';
263
 */
264
function lsx_widget_entry_before() {
265
	do_action( 'lsx_widget_entry_before' );
266
}
267
268
/**
269
 * Widget Entry after
270
 *
271
 * @return void
272
 */
273
function lsx_widget_entry_after() {
274
	do_action( 'lsx_widget_entry_after' );
275
}
276
277
/**
278
 * Widget Entry Top
279
 *
280
 * @return void
281
 */
282
function lsx_widget_entry_top() {
283
	do_action( 'lsx_widget_entry_top' );
284
}
285
286
/**
287
 * Widget Entry Bottom
288
 *
289
 * @return void
290
 */
291
function lsx_widget_entry_bottom() {
292
	do_action( 'lsx_widget_entry_bottom' );
293
}
294
295
/**
296
 * Widget entry content
297
 *
298
 * @return void
299
 */
300
function lsx_widget_entry_content_top() {
301
	do_action( 'lsx_widget_entry_content_top' );
302
}
303
304
/**
305
 * Widget Entry content bottom
306
 *
307
 * @return void
308
 */
309
function lsx_widget_entry_content_bottom() {
310
	do_action( 'lsx_widget_entry_content_bottom' );
311
}
312
313
/**
314
 * Comments block hooks
315
 *
316
 * $lsx_supports[] = 'comments';
317
 */
318
function lsx_comments_before() {
319
	do_action( 'lsx_comments_before' );
320
}
321
322
/**
323
 * Comment After
324
 *
325
 * @return void
326
 */
327
function lsx_comments_after() {
328
	do_action( 'lsx_comments_after' );
329
}
330
331
/**
332
 * Semantic <sidebar> hooks
333
 *
334
 * $lsx_supports[] = 'sidebar';
335
 */
336
function lsx_sidebars_before() {
337
	do_action( 'lsx_sidebars_before' );
338
}
339
340
/**
341
 * Sidebar After
342
 *
343
 * @return void
344
 */
345
function lsx_sidebars_after() {
346
	do_action( 'lsx_sidebars_after' );
347
}
348
349
/**
350
 * Sidebar Top
351
 *
352
 * @return void
353
 */
354
function lsx_sidebar_top() {
355
	do_action( 'lsx_sidebar_top' );
356
}
357
358
/**
359
 * Sidebar Bottom
360
 *
361
 * @return void
362
 */
363
function lsx_sidebar_bottom() {
364
	do_action( 'lsx_sidebar_bottom' );
365
}
366
367
/**
368
 * Semantic <footer> hooks
369
 *
370
 * $lsx_supports[] = 'footer';
371
 */
372
function lsx_footer_before() {
373
	do_action( 'lsx_footer_before' );
374
}
375
376
/**
377
 * Footer After
378
 *
379
 * @return void
380
 */
381
function lsx_footer_after() {
382
	do_action( 'lsx_footer_after' );
383
}
384
385
/**
386
 * Footer Top
387
 *
388
 * @return void
389
 */
390
function lsx_footer_top() {
391
	do_action( 'lsx_footer_top' );
392
}
393
394
/**
395
 * Footer Bottom
396
 *
397
 * @return void
398
 */
399
function lsx_footer_bottom() {
400
	do_action( 'lsx_footer_bottom' );
401
}
402