-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
executable file
·55 lines (44 loc) · 1.47 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
<?php
/**
* Footer Template
*
* This template closes #main div and displays the #footer div.
*
* Thematic Action Hooks: thematic_abovefooter thematic_belowfooter thematic_after
* Thematic Filters: thematic_close_wrapper can be used to remove the closing of the #wrapper div
*
* @package Thematic
* @subpackage Templates
*/
?>
<?php // action hook for placing content above the closing of the #main div
thematic_abovemainclose();
?>
</div><!-- #main -->
<?php
// action hook for placing content above the footer
thematic_abovefooter();
// Filter provided for altering output of the footer opening element
echo ( apply_filters( 'thematic_open_footer', '<div id="footer">' ) );
?>
<?php
// action hook creating the footer
thematic_footer();
?>
<?php
// Filter provided for altering output of the footer closing element
echo ( apply_filters( 'thematic_close_footer', '</div><!-- #footer -->' . "\n" ) );
// action hook for placing content below the footer
thematic_belowfooter();
?>
<?php
// Filter provided for altering output of wrapping element follows the body tag
if ( apply_filters( 'thematic_close_wrapper', true ) )
echo ( '</div><!-- #wrapper .hfeed -->' . "\n" );
// action hook for placing content before closing the BODY tag
thematic_after();
// calling WordPress' footer action hook
wp_footer();
?>
</body>
</html>