Name: footer.php
Path: devdmbootstrap4/footer.php
Source: https://github.com/dannymachal/devdmbootstrap4/blob/master/footer.php
Footer.php is included in all the major theme template files with the function get_footer(). This file closes our opening tags from header.php and executes wp_footer().
This is where the “credit link” is also output. You can toggle this off in the theme customizer options.
<?php if (get_theme_mod('devdmbootstrap4_show_credit_setting', 1)) : ?>
<div class="container dmbs-author-credits">
<div class="row">
<div class="col-12">
<p><a href="<?php echo esc_url(devdmbootstrap4_credit_link()); ?>"><?php _e('DevDmBootstrap4 Created by Danny Machal (DevDm.com)','devdmbootstrap4'); ?></a></p>
</div>
</div>
</div>
<?php endif; ?>
<?php wp_footer(); ?>
</body>
</html>