footer-credits.php 830 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Title: Footer credits
  4. * Slug: barnsbury23/footer-credits
  5. * Categories: footer
  6. * Block Types: core/template-part/footer
  7. */
  8. ?>
  9. <!-- wp:paragraph {"align":"left","style":{"spacing":{"margin":{"top":"0"},"blockGap":"2rem"},"typography":{"lineHeight":1,"textTransform":"none","fontStyle":"normal","fontWeight":"300"}},"fontSize":"medium","fontFamily":"rubik"} -->
  10. <p class="has-text-align-left has-rubik-font-family has-medium-font-size" style="margin-top:0;font-style:normal;font-weight:300;line-height:1;text-transform:none">
  11. <?php
  12. /* Translators: WordPress link. */
  13. $wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'barnsbury23' ) ) . '" rel="nofollow">WordPress</a>';
  14. echo sprintf(
  15. esc_html__( 'Designed with %1$s', 'barnsbury23' ),
  16. $wordpress_link
  17. );
  18. ?>
  19. </p>
  20. <!-- /wp:paragraph -->