[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-content/themes/twentytwentyfour/patterns/ -> footer-centered-logo-nav.php (source)

   1  <?php
   2  /**
   3   * Title: Footer with centered logo and navigation
   4   * Slug: twentytwentyfour/footer-centered-logo-nav
   5   * Categories: footer
   6   * Block Types: core/template-part/footer
   7   */
   8  ?>
   9  
  10  <!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|40","bottom":"var:preset|spacing|50"}}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"center"}} -->
  11  <div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--50)">
  12  
  13      <!-- wp:site-logo /-->
  14  
  15      <!-- wp:navigation {"overlayMenu":"never","layout":{"type":"flex","justifyContent":"center"},"fontSize":"small"} /-->
  16  
  17      <!-- wp:paragraph {"align":"center","style":{"elements":{"link":{"color":{"text":"var:preset|color|contrast"}}}},"textColor":"secondary","fontSize":"small"} -->
  18      <p class="has-text-align-center has-secondary-color has-text-color has-link-color has-small-font-size">
  19      <?php
  20      /* Translators: WordPress link. */
  21          $wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'twentytwentyfour' ) ) . '" rel="nofollow">WordPress</a>';
  22          echo sprintf(
  23              /* Translators: Designed with WordPress */
  24              esc_html__( 'Designed with %1$s', 'twentytwentyfour' ),
  25              $wordpress_link
  26          );
  27          ?>
  28      </p>
  29      <!-- /wp:paragraph -->
  30  </div>
  31  <!-- /wp:group -->


Generated : Fri May 3 08:20:01 2024 Cross-referenced by PHPXref