[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-content/themes/twentyfourteen/ -> footer.php (source)

   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  
  14          </div><!-- #main -->
  15  
  16          <footer id="colophon" class="site-footer">
  17  
  18              <?php get_sidebar( 'footer' ); ?>
  19  
  20              <div class="site-info">
  21                  <?php
  22                  /**
  23                   * Fires before the Twenty Fourteen footer text for footer customization.
  24                   *
  25                   * @since Twenty Fourteen 1.0
  26                   */
  27                  do_action( 'twentyfourteen_credits' );
  28                  ?>
  29                  <?php
  30                  if ( function_exists( 'the_privacy_policy_link' ) ) {
  31                      the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
  32                  }
  33                  ?>
  34                  <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyfourteen' ) ); ?>" class="imprint">
  35                      <?php
  36                      /* translators: %s: WordPress */
  37                      printf( __( 'Proudly powered by %s', 'twentyfourteen' ), 'WordPress' );
  38                      ?>
  39                  </a>
  40              </div><!-- .site-info -->
  41          </footer><!-- #colophon -->
  42      </div><!-- #page -->
  43  
  44      <?php wp_footer(); ?>
  45  </body>
  46  </html>


Generated : Thu Oct 2 08:20:03 2025 Cross-referenced by PHPXref