Pristine upstream, unpacked from the official wordpress.org tarball. https://wordpress.org/wordpress-7.1.1.tar.gz sha1 2a9d68474e8703aa3a66f80427b325e0941b6a1e (published by wordpress.org) sha256 3996fee13448ef12e07e9f0c77db2f655ffa1b7cde71c80a4965d3bf1fb956b3 This branch carries nothing but upstream releases, one commit each, and is never edited. It is the other side of the git-subtree merge that brings security releases into SiriusPress/wordpress/ — see SiriusPress/docs/upstream-merges.md.
35 lines
1.1 KiB
PHP
35 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* Title: Default Footer
|
|
* Slug: twentytwentythree/footer-default
|
|
* Categories: footer
|
|
* Block Types: core/template-part/footer
|
|
* Description: Footer with site title and powered by WordPress.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Twenty_Three
|
|
* @since Twenty Twenty-Three 1.0
|
|
*/
|
|
|
|
?>
|
|
|
|
<!-- wp:group {"layout":{"type":"constrained"}} -->
|
|
<div class="wp-block-group">
|
|
<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"var:preset|spacing|40"}}},"layout":{"type":"flex","justifyContent":"space-between"}} -->
|
|
<div class="wp-block-group alignwide" style="padding-top:var(--wp--preset--spacing--40)">
|
|
<!-- wp:site-title {"level":0} /-->
|
|
<!-- wp:paragraph {"align":"right"} -->
|
|
<p class="has-text-align-right">
|
|
<?php
|
|
printf(
|
|
/* Translators: WordPress link. */
|
|
esc_html__( 'Proudly powered by %s', 'twentytwentythree' ),
|
|
'<a href="' . esc_url( __( 'https://wordpress.org', 'twentytwentythree' ) ) . '" rel="nofollow">WordPress</a>'
|
|
)
|
|
?>
|
|
</p>
|
|
<!-- /wp:paragraph -->
|
|
</div>
|
|
<!-- /wp:group -->
|
|
</div>
|
|
<!-- /wp:group -->
|