Files
Landing/wp-content/themes/upstudy/template-parts/footer/site-info.php
T
2026-04-23 04:33:43 +03:30

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