This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cookthebooks-legacy/template-parts/footer/copyright-text.php
2023-09-08 01:45:46 -07:00

23 lines
588 B
PHP

<?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 -->