Server : LiteSpeed System : Linux webbox1.ncrdns.net 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64 User : rahcos ( 1533) PHP Version : 8.4.23 Disable Function : NONE Directory : /home/rahcos/.trash/wp-content/themes/hara/page-templates/ |
<?php
$copyright = hara_tbay_get_config('copyright_text', '');
?>
<?php if (is_active_sidebar('footer')) : ?>
<div class="footer">
<div class="container">
<div class="row">
<?php dynamic_sidebar('footer'); ?>
</div>
</div>
</div>
<?php endif; ?>
<?php if (!empty($copyright)) : ?>
<div class="tbay-copyright">
<div class="container">
<div class="copyright-content">
<div class="text-copyright text-center">
<?php echo trim($copyright); ?>
</div>
</div>
</div>
</div>
<?php else: ?>
<div class="tbay-copyright">
<div class="container">
<div class="copyright-content">
<div class="text-copyright text-center">
<?php
$allowed_html_array = array( 'a' => array('href' => array() ) );
echo wp_kses(__('Copyright © 2023 - hara. All Rights Reserved. <br/> Powered by <a href="//thembay.com">ThemBay</a>', 'hara'), $allowed_html_array);
?>
</div>
</div>
</div>
</div>
<?php endif; ?>