-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
43 lines (33 loc) · 1.02 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
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @package Dyna
* @subpackage Footer
* @since 0.0.1
* @version 0.0.8
* @author Automattic Themeshaper Team
* @author Alf Drollinger - [email protected]
* @copyright 2018 Dyna - https://dyna.press
* @license GNU GPL V2 - https://www.gnu.org/licenses/gpl
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
*/
namespace Dyna;
?>
<footer id="colophon" class="site-footer">
<div class="site-info">
Copyright <?php echo date('Y'); ?> <?php bloginfo( 'name' ); ?> <span class="sep"> | </span>
<?php _e('Created with', 'dyna'); ?>
<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'dyna' ) ); ?>">WordPress</a>
<?php _e('and', 'dyna'); ?>
<a href="<?php echo esc_url( __( 'https://dyna.press/', 'dyna' ) ); ?>">Dyna</a>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>