[ 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 do_action( 'twentyfourteen_credits' ); ?>
  22                  <?php
  23                  if ( function_exists( 'the_privacy_policy_link' ) ) {
  24                      the_privacy_policy_link( '', '<span role="separator" aria-hidden="true"></span>' );
  25                  }
  26                  ?>
  27                  <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyfourteen' ) ); ?>" class="imprint">
  28                      <?php
  29                      /* translators: %s: WordPress */
  30                      printf( __( 'Proudly powered by %s', 'twentyfourteen' ), 'WordPress' );
  31                      ?>
  32                  </a>
  33              </div><!-- .site-info -->
  34          </footer><!-- #colophon -->
  35      </div><!-- #page -->
  36  
  37      <?php wp_footer(); ?>
  38  </body>
  39  </html>


Generated : Thu Nov 21 08:20:01 2024 Cross-referenced by PHPXref