[ 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_Thirteen 9 * @since Twenty Thirteen 1.0 10 */ 11 ?> 12 13 </div><!-- #main --> 14 <footer id="colophon" class="site-footer"> 15 <?php get_sidebar( 'main' ); ?> 16 17 <div class="site-info"> 18 <?php do_action( 'twentythirteen_credits' ); ?> 19 <?php 20 if ( function_exists( 'the_privacy_policy_link' ) ) { 21 the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' ); 22 } 23 ?> 24 <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentythirteen' ) ); ?>" class="imprint"> 25 <?php 26 /* translators: %s: WordPress */ 27 printf( __( 'Proudly powered by %s', 'twentythirteen' ), 'WordPress' ); 28 ?> 29 </a> 30 </div><!-- .site-info --> 31 </footer><!-- #colophon --> 32 </div><!-- #page --> 33 34 <?php wp_footer(); ?> 35 </body> 36 </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 |