mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
40 lines
1.5 KiB
PHP
40 lines
1.5 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* The theme footer.
|
||
|
*
|
||
|
* @package bootstrap-basic4
|
||
|
*/
|
||
|
?>
|
||
|
</div><!--.site-content-->
|
||
|
|
||
|
|
||
|
<footer id="site-footer" class="site-footer page-footer">
|
||
|
<div id="footer-row" class="row">
|
||
|
<div class="col-md-6 footer-left">
|
||
|
<?php
|
||
|
if (!dynamic_sidebar('footer-left')) {
|
||
|
/* translators: %s: WordPress text with link. */
|
||
|
printf(__('Powered by %s', 'bootstrap-basic4'), '<a href="https://wordpress.org" rel="nofollow">WordPress</a>');
|
||
|
echo ' | ';
|
||
|
if (function_exists('the_privacy_policy_link')) {
|
||
|
the_privacy_policy_link('', ' | ');
|
||
|
}
|
||
|
/* translators: %s: Bootstrap Basic 4 text with link. */
|
||
|
printf(__('Theme: %s', 'bootstrap-basic4'), '<a href="https://rundiz.com" rel="nofollow">Bootstrap Basic4</a>');
|
||
|
}
|
||
|
?>
|
||
|
</div>
|
||
|
<div class="col-md-6 footer-right text-right">
|
||
|
<?php dynamic_sidebar('footer-right'); ?>
|
||
|
</div>
|
||
|
</div>
|
||
|
</footer><!--.page-footer-->
|
||
|
</div><!--.page-container-->
|
||
|
|
||
|
|
||
|
<!--wordpress footer-->
|
||
|
<?php wp_footer(); ?>
|
||
|
<!--end wordpress footer-->
|
||
|
</body>
|
||
|
</html>
|