first commit

This commit is contained in:
2023-09-08 01:45:46 -07:00
commit 8cbf53172b
108 changed files with 29005 additions and 0 deletions

View File

@ -0,0 +1,23 @@
<?php
/**
* Template part for displaying the footer copyright text.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package PressBook
*/
$pressbook_copyright_text = PressBook\Options\Footer::get_copyright_text();
?>
<div class="copyright-text">
<div class="u-wrapper copyright-text-wrap">
<?php
if ( '' !== $pressbook_copyright_text ) {
?>
<p><?php echo wp_kses( $pressbook_copyright_text, PressBook\Options\Footer::copyright_text_allowed_tags() ); ?></p>
<?php
}
?>
</div><!-- .copyright-text-wrap -->
</div><!-- .copyright-text -->