-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
38 lines (29 loc) · 949 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
*
* @package WordPress
* @subpackage Startbootstrap
* @since Startbootstrap 1.0
*/
?>
<!-- Footer -->
<footer class="py-5 bg-dark">
<div class="container">
<span class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a> | </span>
<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'startbootstrap' ) ); ?>" class="imprint">
<?php printf( __( 'Realizzazione sito by %s', 'startbootstrap' ), 'WordPress' ); ?>
</a> |
<?php
if ( function_exists( 'the_privacy_policy_link' ) ) {
the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
}
?>
</div>
<!-- /.container -->
</footer>
<?php wp_footer(); ?>
</body>
</html>