-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
38 lines (30 loc) · 937 Bytes
/
footer.php
File metadata and controls
38 lines (30 loc) · 937 Bytes
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 cashier
* @copyright Copyright (c) 2018, Danny Cooper
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
*/
?>
</div><!-- .wrapper -->
</div><!-- .site-content -->
<footer class="site-footer" role="contentinfo">
<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.', 'cashier' ), '<a href="https://olympusthemes.com/themes/cashier">Cashier</a>', 'OlympusThemes' );
?>
</div><!-- .site-info -->
</div><!-- .wrapper -->
</footer><!-- .site-footer -->
<?php wp_footer(); ?>
</div><!-- .site-wrapper -->
</body>
</html>