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 footer content and the closing of the #main and #page div elements. |
|
6 |
* |
|
7 |
* @package WordPress |
|
8 |
* @subpackage Twenty_Fourteen |
|
9 |
* @since Twenty Fourteen 1.0 |
|
10 |
*/ |
|
11 |
?> |
|
12 |
||
13 |
</div><!-- #main --> |
|
14 |
||
15 |
<footer id="colophon" class="site-footer" role="contentinfo"> |
|
16 |
||
17 |
<?php get_sidebar( 'footer' ); ?> |
|
18 |
||
19 |
<div class="site-info"> |
|
20 |
<?php do_action( 'twentyfourteen_credits' ); ?> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
21 |
<?php |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
22 |
if ( function_exists( 'the_privacy_policy_link' ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
23 |
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
|
24 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
25 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
26 |
<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyfourteen' ) ); ?>" class="imprint"> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
27 |
<?php printf( __( 'Proudly powered by %s', 'twentyfourteen' ), 'WordPress' ); ?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
28 |
</a> |
5 | 29 |
</div><!-- .site-info --> |
30 |
</footer><!-- #colophon --> |
|
31 |
</div><!-- #page --> |
|
32 |
||
33 |
<?php wp_footer(); ?> |
|
34 |
</body> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
35 |
</html> |