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


Generated : Mon Mar 18 08:20:01 2024 Cross-referenced by PHPXref