23 lines
588 B
PHP
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 -->
|