footer.php 918 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Title: Default footer
  4. * Slug: hey/footer
  5. * Categories: footer
  6. * Block Types: core/template-part/footer
  7. */
  8. ?>
  9. <!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|70"}}},"layout":{"type":"constrained"}} -->
  10. <div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--70)">
  11. <!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.5"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"secondary","fontSize":"small"} -->
  12. <p class="has-secondary-color has-text-color has-link-color has-small-font-size" style="line-height:1.5"><?php
  13. /* Translators: WordPress link. */
  14. $wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'hey' ) ) . '" rel="nofollow">WordPress</a>';
  15. echo sprintf(
  16. esc_html__( 'Designed with %1$s', 'hey' ),
  17. $wordpress_link
  18. );
  19. ?></p>
  20. <!-- /wp:paragraph -->
  21. </div>
  22. <!-- /wp:group -->