16 lines
337 B
PHP
16 lines
337 B
PHP
<?php
|
|
/**
|
|
* Displays footer site info
|
|
*
|
|
* @package Upstudy
|
|
* Version: 1.0.0
|
|
*/
|
|
$copyright_text = Upstudy::setting( 'copyright_text' );
|
|
?>
|
|
|
|
<div class="site-info">
|
|
<?php if ( $copyright_text ) : ?>
|
|
<p><?php echo esc_html( Upstudy::setting( 'copyright_text' ) ); ?></p>
|
|
<?php endif; ?>
|
|
</div><!-- .site-info -->
|