[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-content/themes/twentytwentythree/patterns/ -> footer-default.php (source)

   1  <?php
   2  /**
   3   * Title: Default Footer
   4   * Slug: twentytwentythree/footer-default
   5   * Categories: footer
   6   * Block Types: core/template-part/footer
   7   * Description: Footer with site title and powered by WordPress.
   8   *
   9   * @package WordPress
  10   * @subpackage Twenty_Twenty_Three
  11   * @since Twenty Twenty-Three 1.0
  12   */
  13  
  14  ?>
  15  
  16  <!-- wp:group {"layout":{"type":"constrained"}} -->
  17  <div class="wp-block-group">
  18      <!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"var:preset|spacing|40"}}},"layout":{"type":"flex","justifyContent":"space-between"}} -->
  19      <div class="wp-block-group alignwide" style="padding-top:var(--wp--preset--spacing--40)">
  20          <!-- wp:site-title {"level":0} /-->
  21          <!-- wp:paragraph {"align":"right"} -->
  22          <p class="has-text-align-right">
  23          <?php
  24          printf(
  25              /* Translators: WordPress link. */
  26              esc_html__( 'Proudly powered by %s', 'twentytwentythree' ),
  27              '<a href="' . esc_url( __( 'https://wordpress.org', 'twentytwentythree' ) ) . '" rel="nofollow">WordPress</a>'
  28          )
  29          ?>
  30          </p>
  31          <!-- /wp:paragraph -->
  32      </div>
  33      <!-- /wp:group -->
  34  </div>
  35  <!-- /wp:group -->


Generated : Sat Aug 15 08:20:25 2026 Cross-referenced by PHPXref