author | ymh <ymh.work@gmail.com> |
Mon, 14 Oct 2019 17:39:30 +0200 | |
changeset 7 | cf61fcea0001 |
parent 5 | 5e2f62d02dcd |
permissions | -rw-r--r-- |
5 | 1 |
<?php |
2 |
/** |
|
3 |
* The template for displaying the footer |
|
4 |
* |
|
5 |
* Contains the closing of the "site-content" div and all content after. |
|
6 |
* |
|
7 |
* @package WordPress |
|
8 |
* @subpackage Twenty_Fifteen |
|
9 |
* @since Twenty Fifteen 1.0 |
|
10 |
*/ |
|
11 |
?> |
|
12 |
||
13 |
</div><!-- .site-content --> |
|
14 |
||
15 |
<footer id="colophon" class="site-footer" role="contentinfo"> |
|
16 |
<div class="site-info"> |
|
17 |
<?php |
|
18 |
/** |
|
19 |
* Fires before the Twenty Fifteen footer text for footer customization. |
|
20 |
* |
|
21 |
* @since Twenty Fifteen 1.0 |
|
22 |
*/ |
|
23 |
do_action( 'twentyfifteen_credits' ); |
|
24 |
?> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
25 |
<?php |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
26 |
if ( function_exists( 'the_privacy_policy_link' ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
27 |
the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
28 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
29 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
30 |
<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyfifteen' ) ); ?>" class="imprint"> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
31 |
<?php printf( __( 'Proudly powered by %s', 'twentyfifteen' ), 'WordPress' ); ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
32 |
</a> |
5 | 33 |
</div><!-- .site-info --> |
34 |
</footer><!-- .site-footer --> |
|
35 |
||
36 |
</div><!-- .site --> |
|
37 |
||
38 |
<?php wp_footer(); ?> |
|
39 |
||
40 |
</body> |
|
41 |
</html> |