到目前为止,我的页脚一直都这样做。但是突然,当我启动网站时,它消失了。这是Wordpress网站中单独的页脚。加载进行得很好,因为当我在页脚中使用其他代码时,它可以正常工作。我怀疑footer.php中存在某些错误,但是我不知道是什么?
我尝试了其他footer.php的其他代码。这行得通,但是找不到我的代码和他们的代码之间的区别。
这是我的footer.php(我的活动主题是瑜伽儿童主题):
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after.
*
* @package yoga
*/
?>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!--==================== FOOTER====================-->
<?php
$yoga_footer_widget_background = get_theme_mod('yoga_footer_widget_background');
if($yoga_footer_widget_background != '') { ?>
<footer style="background-image:url('<?php echo esc_url($yoga_footer_widget_background);?>');">
<?php } else { ?>
<footer>
<?php } ?>
<div class="overlay">
<!--Start yoga-footer-widget-area-->
<?php if ( is_active_sidebar( 'yoga-footer_widget_area' ) ) { ?>
<div class="yoga-footer-widget-area">
<div class="container">
<div class="row">
<?php dynamic_sidebar( 'yoga-footer_widget_area' ); ?>
<!-- Contact symbols -->
<div id="text-4" class="col-md-4 col-sm-6 yoga-widget widget_text">
<div class="textwidget">
<a href="# 1"><i class="fab fa-facebook-square fa-3x"></i><a>
<a href="#2"><i class="fab fa-linkedin fa-3x"></i><a>
<a href="#3"><i class="fab fa-instagram fa-3x"></i><a>
</div>
</div>
</div>
</div>
</div>
<?php } ?>
<!--End yoga-footer-widget-area-->
</div>
</footer>
<!--Scroll To Top-->
<a href="#" class="ta_upscr bounceInup animated"><i class="fa fa-caret-up"></i></a>
<!--/Scroll To Top-->
<?php wp_footer(); ?>
</body>
</html>
我希望有人能在我的代码中看到错误,并对此提供解决方案。