footer-centered.php 973 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Centered footer block pattern
  4. */
  5. return array(
  6. 'title' => __( 'Centered footer', 'livro' ),
  7. 'categories' => array( 'footer' ),
  8. 'blockTypes' => array( 'core/template-part/footer' ),
  9. 'content' => '<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"var(--wp--custom--spacing--large, 8rem)","bottom":"var(--wp--custom--spacing--small, 1.25rem)"}}}} -->
  10. <div class="wp-block-group alignfull" style="padding-top:var(--wp--custom--spacing--large, 8rem);padding-bottom:var(--wp--custom--spacing--small, 1.25rem)">
  11. <!-- wp:paragraph {"align":"center","fontSize":"small"} -->
  12. <p class="has-text-align-center has-small-font-size">' .
  13. sprintf(
  14. /* Translators: WordPress link. */
  15. esc_html__( 'Proudly powered by %s', 'livro' ),
  16. '<a href="' . esc_url( __( 'https://wordpress.org', 'livro' ) ) . '" rel="nofollow">WordPress</a>'
  17. ) . '</p>
  18. <!-- /wp:paragraph --></div>
  19. <!-- /wp:group -->',
  20. );