equal
deleted
inserted
replaced
1 <?php |
|
2 /** |
|
3 * Displays footer site info |
|
4 * |
|
5 * @package WordPress |
|
6 * @subpackage Twenty_Seventeen |
|
7 * @since 1.0 |
|
8 * @version 1.0 |
|
9 */ |
|
10 |
|
11 ?> |
|
12 <div class="site-info"> |
|
13 <?php |
|
14 if ( function_exists( 'the_privacy_policy_link' ) ) { |
|
15 the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' ); |
|
16 } |
|
17 ?> |
|
18 <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyseventeen' ) ); ?>" class="imprint"> |
|
19 <?php printf( __( 'Proudly powered by %s', 'twentyseventeen' ), 'WordPress' ); ?> |
|
20 </a> |
|
21 </div><!-- .site-info --> |
|