balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

footer.php (842B)


      1 <?php
      2 $footer_copyright = welbim_get_options( 'footer_copyright' );
      3 $footer_link      = welbim_get_options( 'footer_link' );
      4 ?>
      5 <footer class="main-footer">
      6 	<?php get_template_part( 'components/footer/footer-top' ); ?>
      7 </footer>
      8 <div class="footer-bottom">
      9 	<div class="auto-container">
     10 		<div class="content">
     11 			<?php if ( $footer_link ) : ?>
     12 				<ul class="social-icon">
     13 					<?php echo wp_kses( $footer_link, 'welbim_kses' ); ?>
     14 				</ul>
     15 			<?php endif; ?>
     16 			<div class="copyright-text">
     17 				<p>
     18 					<?php
     19 					if ( $footer_copyright != '' ) :
     20 						echo wp_kses( $footer_copyright, 'welbim_kses' );
     21 					else :
     22 						echo esc_html__( '&copy; Copyright 2021 by WELBIM', 'welbim' );
     23 					endif;
     24 					?>
     25 				</p>
     26 			</div>
     27 		</div>
     28 	</div>
     29 </div>
     30 </div>
     31 <?php do_action( 'welbim_back_to_top' ); ?>
     32 <?php wp_footer(); ?>
     33 </body>
     34 </html>