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