forked from bearded-avenger/DMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
51 lines (47 loc) · 1.37 KB
/
footer.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
* FOOTER
*
* This file controls the ending HTML </body></html> and common graphical
* elements in your site footer. You can control what shows up where using
* WordPress and PageLines PHP conditionals
*
* @package PageLines Framework
* @since 1.0
*
* @link http://www.pagelines.com/
* @link http://www.pagelines.com/DMS
*
* @author PageLines http://www.pagelines.com/
* @copyright Copyright (c) 2008-2013, PageLines [email protected]
*
* @internal last revised February November 21, 2011
* @version ...
*
* @todo Define version
*/
if(!has_action('override_pagelines_body_output')):
pagelines_register_hook('pagelines_start_footer'); // Hook ?>
</div>
<?php pagelines_register_hook('pagelines_after_main'); // Hook ?>
<div class="clear"></div>
</div>
</div>
</div>
<?php pagelines_register_hook('pagelines_before_footer'); // Hook ?>
<footer id="footer" class="footer pl-region" data-region="footer">
<div class="page-area outline pl-area-container fix">
<?php pagelines_template_area('pagelines_footer', 'footer'); // Hook ?>
</div>
</footer>
</div>
</div>
<?php pagelines_register_hook('pagelines_after_footer'); // Hook ?>
</div>
<?php
endif;
print_pagelines_option('footerscripts'); // Load footer scripts option
wp_footer(); // Hook (WordPress)
?>
</body>
</html>