forked from riseofthetigers/wxp-starter-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.php
36 lines (23 loc) · 1.2 KB
/
base.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/**********************************************************************
* The Body/base Header
*********************************************************************/
wxp_get_view("#base_header");
do_action('get_header');
/**********************************************************************
* Choose the layout header
*********************************************************************/
wxp_get_view("#layout_header", $layout_header);
/**********************************************************************
* Choose the template layout/columns
*********************************************************************/
wxp_get_view("#layout_column", $layout_column);
/**********************************************************************
* get the layout footer
*********************************************************************/
wxp_get_view("#layout_footer", $layout_footer);
/**********************************************************************
* The Body/base Footer
*********************************************************************/
wxp_get_view("#base_footer");
?>