-
Notifications
You must be signed in to change notification settings - Fork 16
/
footer.php
executable file
·36 lines (32 loc) · 1.15 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
<?php
/**
* The Template for displaying the footer.
*
* @package WP Basis
* @subpackage
* @since 06/12/2012 0.0.1
* @version 01/21/2013
* @author fb
*/
?>
</main> <?php // end main-element in header.php ?>
<?php
/**
* The main page footer can contain items such as copyright and contact information.
* It can also contain a duplicated navigation of your site which is not usually
* contained within a <nav>
* ARIA: the landmark role "contentinfo" is added here as it contains metadata
* that applies to the parent document
*/
?>
<footer id="colophon" class="site-footer" role="contentinfo">
<?php do_action( 'wp_basis_footer_credits' );
printf( __( '<p class="site-info">Theme: %1$s by %2$s.</p>', 'wp_basis' ), 'WP Basis', '<a href="https://github.com/bueltge/wordpress-basis-theme/network/members" rel="designer">Contributer Team</a>' );
if ( defined( 'WP_DEBUG' ) && WP_DEBUG )
printf( __( '<p>Generate Page with %1$sq in %2$ss.</p>', 'wp_basis' ), $wpdb->num_queries, timer_stop( 0 ) );
?>
</footer>
</div> <?php // end #wrap in header.php ?>
<?php wp_footer(); ?>
</body>
</html>