[ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[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 16 /** 17 * Fires before the Twenty Twelve footer text for footer customization. 18 * 19 * @since Twenty Twelve 1.0 20 */ 21 do_action( 'twentytwelve_credits' ); 22 ?> 23 <?php 24 if ( function_exists( 'the_privacy_policy_link' ) ) { 25 the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' ); 26 } 27 ?> 28 <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentytwelve' ) ); ?>" class="imprint" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentytwelve' ); ?>"> 29 <?php 30 /* translators: %s: WordPress */ 31 printf( __( 'Proudly powered by %s', 'twentytwelve' ), 'WordPress' ); 32 ?> 33 </a> 34 </div><!-- .site-info --> 35 </footer><!-- #colophon --> 36 </div><!-- #page --> 37 38 <?php wp_footer(); ?> 39 </body> 40 </html>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated : Thu Oct 2 08:20:03 2025 | Cross-referenced by PHPXref |