28 lines
815 B
PHP
28 lines
815 B
PHP
<?php
|
|
/**
|
|
* Title: Default footer
|
|
* Slug: freddie/footer
|
|
* Categories: featured, footer
|
|
* Block Types: core/template-part/footer
|
|
*/
|
|
|
|
declare( strict_types = 1 );
|
|
?>
|
|
|
|
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
|
<div class="wp-block-group">
|
|
<!-- wp:group {"align":"wide","layout":{"type":"default"}} -->
|
|
<div class="wp-block-group alignwide">
|
|
<!-- wp:paragraph {"align":"left","fontSize":"small"} -->
|
|
<p class="has-text-align-left has-small-font-size"><?php
|
|
/* Translators: WordPress link. */
|
|
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'freddie' ) ) . '" rel="nofollow">WordPress</a>';
|
|
echo sprintf(
|
|
esc_html__( 'Designed with %1$s', 'freddie' ),
|
|
$wordpress_link
|
|
);?></p>
|
|
<!-- /wp:paragraph -->
|
|
</div>
|
|
<!-- /wp:group -->
|
|
</div>
|
|
<!-- /wp:group -->
|