[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

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


Generated : Tue Mar 19 08:20:01 2024 Cross-referenced by PHPXref