-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
56 lines (30 loc) · 1.26 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
<?php
/**
* Footer Template
*
* The footer template is generally used on every page of your site. Nearly all other
* templates call it somewhere near the bottom of the file. It is used mostly as a closing
* wrapper, which is opened with the header.php file. It also executes key functions needed
* by the theme, child themes, and plugins.
*
* @package InfoBusiness
* @subpackage Template
*/
?>
<?php do_atomic( 'after_content' ); // After content hook ?>
</div><!-- .span12 from header -->
</div><!-- #content .row -->
<footer class="row">
<?php do_atomic( 'open_footer' ); // Open footer hook ?>
<?php do_atomic( 'before_footer' ); // Before footer hook ?>
<?php echo apply_atomic_shortcode( 'footer_content', hybrid_get_setting( 'footer_insert' ) ); ?>
<?php do_atomic( 'footer' ); // Footer hook ?>
<?php do_atomic( 'close_footer' ); // Close footer hook ?>
</footer>
</div><!-- .container -->
<?php do_atomic( 'after_footer' ); // After footer hook ?>
<?php wp_footer(); // WordPress footer hook ?>
<?php do_atomic( 'close_body' ); // After HTML hook ?>
</body>
</html>
<!-- <?php echo get_num_queries(); ?> queries. <?php timer_stop(1); ?> seconds. -->