-
Notifications
You must be signed in to change notification settings - Fork 3
/
footer.php
executable file
·38 lines (30 loc) · 937 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
38
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package scaffold
* @copyright Copyright (c) 2019, Danny Cooper
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
*/
?>
</div><!-- .wrapper -->
</div><!-- .site-content -->
<footer class="site-footer">
<div class="wrapper">
<div class="site-info">
<?php
// translators: %1$s: theme name.
// translators: %2$s: theme author.
printf( esc_html__( 'Theme: %1$s by %2$s.', 'scaffold' ), '<a rel="nofollow" href="https://olympusthemes.com/themes/scaffold/">Scaffold</a>', 'Danny Cooper' );
?>
</div><!-- .site-info -->
</div><!-- .wrapper -->
</footer><!-- .site-footer -->
<?php wp_footer(); ?>
</div><!-- .site-wrapper -->
</body>
</html>