-
Notifications
You must be signed in to change notification settings - Fork 45
/
footer.php
67 lines (61 loc) · 1.92 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?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/tour
*
* @author PageLines http://www.pagelines.com/
* @copyright Copyright (c) 2008-2012, 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 id="morefoot_area" class="container-group">
<?php
pagelines_template_area('pagelines_morefoot', 'morefoot'); // Hook
pagelines_template_area('pagelines_page_footer', 'morefoot'); // Hook
?>
</div>
<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
pagelines_register_hook('pagelines_after_footer'); // Hook
?>
</div>
</footer>
</div>
</div>
<?php if(!pl_is_pro()):?>
<a class="pl-credit" href="http://www.pagelines.com/" title="Built with PageLines DMS [basic]" target="_blank" style="display: block; visibility: visible;">
<i class="icon-pagelines pl-transit"></i> <span class="fademein">DMS</span>
</a>
<?php endif; ?>
<div id="supersized"></div>
</div>
<?php
endif;
print_pagelines_option('footerscripts'); // Load footer scripts option
wp_footer(); // Hook (WordPress)
?>
</body>
</html>