author | ymh <ymh.work@gmail.com> |
Tue, 15 Oct 2019 11:56:20 +0200 | |
changeset 12 | d8a8807227e4 |
parent 7 | cf61fcea0001 |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* The template for displaying the footer |
|
4 |
* |
|
5 |
* Contains footer content and the closing of the #main and #page div elements. |
|
6 |
* |
|
7 |
* @package WordPress |
|
8 |
* @subpackage Twenty_Thirteen |
|
9 |
* @since Twenty Thirteen 1.0 |
|
10 |
*/ |
|
11 |
?> |
|
12 |
||
13 |
</div><!-- #main --> |
|
14 |
<footer id="colophon" class="site-footer" role="contentinfo"> |
|
15 |
<?php get_sidebar( 'main' ); ?> |
|
16 |
||
17 |
<div class="site-info"> |
|
18 |
<?php do_action( 'twentythirteen_credits' ); ?> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
0
diff
changeset
|
19 |
<?php |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
0
diff
changeset
|
20 |
if ( function_exists( 'the_privacy_policy_link' ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
0
diff
changeset
|
21 |
the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
0
diff
changeset
|
22 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
0
diff
changeset
|
23 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
0
diff
changeset
|
24 |
<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentythirteen' ) ); ?>" class="imprint"> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
0
diff
changeset
|
25 |
<?php printf( __( 'Proudly powered by %s', 'twentythirteen' ), 'WordPress' ); ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
0
diff
changeset
|
26 |
</a> |
0 | 27 |
</div><!-- .site-info --> |
28 |
</footer><!-- #colophon --> |
|
29 |
</div><!-- #page --> |
|
30 |
||
31 |
<?php wp_footer(); ?> |
|
32 |
</body> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
0
diff
changeset
|
33 |
</html> |