[ Index ] |
PHP Cross Reference of WordPress |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Displays footer site info 4 * 5 * @package WordPress 6 * @subpackage Twenty_Seventeen 7 * @since Twenty Seventeen 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 20 /* translators: %s: WordPress */ 21 printf( __( 'Proudly powered by %s', 'twentyseventeen' ), 'WordPress' ); 22 ?> 23 </a> 24 </div><!-- .site-info -->
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Thu Nov 21 01:00:03 2024 | Cross-referenced by PHPXref 0.7.1 |