[ 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 the closing of the "site-content" div and all content after. 6 * 7 * @package WordPress 8 * @subpackage Twenty_Fifteen 9 * @since Twenty Fifteen 1.0 10 */ 11 ?> 12 13 </div><!-- .site-content --> 14 15 <footer id="colophon" class="site-footer"> 16 <div class="site-info"> 17 <?php 18 /** 19 * Fires before the Twenty Fifteen footer text for footer customization. 20 * 21 * @since Twenty Fifteen 1.0 22 */ 23 do_action( 'twentyfifteen_credits' ); 24 ?> 25 <?php 26 if ( function_exists( 'the_privacy_policy_link' ) ) { 27 the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' ); 28 } 29 ?> 30 <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyfifteen' ) ); ?>" class="imprint"> 31 <?php 32 /* translators: %s: WordPress */ 33 printf( __( 'Proudly powered by %s', 'twentyfifteen' ), 'WordPress' ); 34 ?> 35 </a> 36 </div><!-- .site-info --> 37 </footer><!-- .site-footer --> 38 39 </div><!-- .site --> 40 41 <?php wp_footer(); ?> 42 43 </body> 44 </html>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated : Thu Nov 21 08:20:01 2024 | Cross-referenced by PHPXref |