-
Notifications
You must be signed in to change notification settings - Fork 2
/
footer.php
executable file
·37 lines (30 loc) · 971 Bytes
/
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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content after.
*
* @package Hellish Simplicity
* @since Hellish Simplicity 1.1
*/
?>
</main><!-- #main -->
<footer id="site-footer" role="contentinfo">
<div class="site-info">
<?php _e( 'Copyright', 'hellish-simplicity' ); ?> © <?php bloginfo( 'name' ); ?> <?php echo date( 'Y' ); ?>.
<?php printf( esc_html__( 'WordPress theme by %s.', 'hellish-simplicity' ), '<a href="https://geek.hellyer.kiwi/" title="Ryan Hellyer">Ryan Hellyer</a>' ); ?>
</div><!-- .site-info -->
</footer><!-- #site-footer -->
<?php wp_footer(); ?>
<?php
define( 'FINAL_TIME', microtime() );
echo "\n";
echo 'cache_time: ' . ( absint( CACHE_TIME ) - absint( START_TIME ) );
echo "\n";
echo 'theme_time: ' . ( absint( THEME_TIME ) - absint( START_TIME ) );
echo "\n";
echo 'final_time: ' . ( absint( FINAL_TIME ) - absint( START_TIME ) );
echo "\n";
?>
</body>
</html>