[ Index ] |
PHP Cross Reference of WordPress |
[Summary view] [Print] [Text view]
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"> 16 17 <?php get_sidebar( 'footer' ); ?> 18 19 <div class="site-info"> 20 <?php do_action( 'twentyfourteen_credits' ); ?> 21 <?php 22 if ( function_exists( 'the_privacy_policy_link' ) ) { 23 the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' ); 24 } 25 ?> 26 <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyfourteen' ) ); ?>" class="imprint"> 27 <?php 28 /* translators: %s: WordPress */ 29 printf( __( 'Proudly powered by %s', 'twentyfourteen' ), 'WordPress' ); 30 ?> 31 </a> 32 </div><!-- .site-info --> 33 </footer><!-- #colophon --> 34 </div><!-- #page --> 35 36 <?php wp_footer(); ?> 37 </body> 38 </html>
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 |