Edit File: footer.php
<?php /** * The template for displaying the footer * * Contains the closing of the #content div and all content after. * * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials * * @package orun */ defined( 'ABSPATH' ) || exit; // Exit directly $options = get_option( 'orun_opt' ); // Options if ( !empty( $options['orun-opt-ads-footer'] ) ) { ?> <div class="ads-area" style="margin-bottom: 25px;"> <?php echo $options['orun-opt-ads-footer']; ?> </div> <?php } if ($options['orun-opt-go-to-top-button'] == true ) { ?> <button onclick="gotoTop()" id="gotoTopBtn" class="orun-gotop <?php echo $options['orun-opt-gotop-design'] ?>" title="<?php esc_html_e('Yukarı Çık', 'orun') ?>"><i class="fas fa-arrow-alt-circle-up"></i></button> <?php } ?> <footer id="colophon" class="orun-footer site-footer"> <?php if ($options['orun-opt-footer-main'] == true) {?> <div class="orun-main-footer"> <div class="container"> <div class="row"> <div class="orun-footer-col"> <?php dynamic_sidebar( 'footer-widget-1' ); ?> </div> <div class="orun-footer-col"> <?php dynamic_sidebar( 'footer-widget-2' ); ?> </div> <div class="orun-footer-col"> <?php dynamic_sidebar( 'footer-widget-3' ); ?> </div> </div> </div> </div> <?php } if ( $options['orun-opt-footer-second'] == true ) { ?> <div class="orun-second-footer"> <div class="container"> <div class="orun-col-p50 orun-col-p100-sm left"> <?php if ( $options['orun-opt-footer-second-left'] == true ) { echo ' ' . $options['orun-opt-footer-text-left'] . ' '; } ?> </div> <div class="orun-col-p50 orun-col-p100-sm right"> <?php if ( $options['orun-opt-footer-second-right'] == true ) { echo ' ' . $options['orun-opt-footer-text-right'] . ' '; } ?> </div> </div> </div> <?php } ?> </footer><!-- #colophon --> </div><!-- #page --> <?php wp_footer(); ?> <?php echo $options['orun-opt-code-foot']; ?> </body> </html>