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


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