footer-default.php (921B)
1 <?php 2 /** 3 * The template for displaying the footer default satyle 4 * @package appside 5 * @since 2.0.0 6 */ 7 $copyright_text = !empty(cs_get_option('copyright_text')) ? cs_get_option('copyright_text'): esc_html__('Aapside Theme Developed by Ir-Tech','aapside'); 8 $copyright_text = str_replace('{copy}','©',$copyright_text); 9 $copyright_text = str_replace('{year}',date('Y'),$copyright_text); 10 ?> 11 12 <footer class="footer-area"> 13 <?php get_template_part('template-parts/common/footer-widget'); ?> 14 <div class="copyright-area"><!-- copyright area --> 15 <div class="container"> 16 <div class="row"> 17 <div class="col-lg-12 text-center"> 18 <div class="copyright-inner"><!-- copyright inner wrapper --> 19 <?php 20 echo wp_kses($copyright_text,Appside()->kses_allowed_html(array('a'))); 21 ?> 22 </div><!-- //.copyright inner wrapper --> 23 </div> 24 </div> 25 </div> 26 </div><!-- //. copyright area --> 27 </footer>