1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * Title: Default footer
- * Slug: shhh/footer
- * Categories: footer
- * Block Types: core/template-part/footer
- */
- declare( strict_types = 1 );
- ?>
- <!-- wp:spacer {"height":"50px"} -->
- <div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
- <!-- /wp:spacer -->
- <!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|60","bottom":"var:preset|spacing|60"}}},"layout":{"type":"constrained","justifyContent":"center"}} -->
- <div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)">
- <!-- wp:paragraph {"lock":{"move":false,"remove":true},"className":"has-x-small-font-size","fontSize":"x-small"} -->
- <p class="has-x-small-font-size"><?php
- /* Translators: WordPress link. */
- $wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'shhh' ) ) . '" rel="nofollow">WordPress</a>';
- echo sprintf(
- esc_html__( 'Designed with %1$s', 'shhh' ),
- $wordpress_link
- );
- ?></p>
- <!-- /wp:paragraph -->
- </div>
- <!-- /wp:group -->
|