我的网站没有显示页脚部分

时间:2019-06-28 作者:Angelica Cast

**已编辑**

您好,我是Wordpress的新手,我的小部件(边栏和页脚)我的页脚有问题。除非删除侧栏,否则不会呈现php。php来自文件。

我试着调试,但没有错误。

这是侧边栏。PHP代码

<?php $loc = \'/\'; if ( ! is_active_sidebar( \'sidebar-1\' ) ) {
return; } ?>

<?php dynamic_sidebar( \'sidebar-1\' ); ?>

<?php 
if (function_exists(\'pll_current_language\')) $lang = pll_current_language(); else $lang =\'en\'; ?>
<div class="hidden-sm hidden-xs">

    <p>&nbsp;</p>

    <?php
    if ($lang == "en" && (date(\'n\')> 10 || date(\'n\') < 5 ))
    {
      ?>
    <h4>Snow Forecast</h4>
      <!-- Beginn Schneehoehen.de Widget Integration -->

      <div align="left" id="containerschnee hoehen" style="margin:16px 0px 16px 0px"><iframe width="100%" height="410" scrolling="no" frameborder="0" style="background:#fff; border:1px solid #999; overflow:hidden;" id="sh_frame" name="sh_frame" src="http://www.schneehoehen.de/widgets/details/widget_schneebericht/kitzbuehel?size=small&theme=black&language=en&weather=true&links=true"></iframe><div style=\'background:#FFF; text-align:left; border:1px solid #999; width:100%; padding:6px 7px 5px 8px; margin-top:5px;\'><a id=\'sh_anchor\' title=\'Kitzbühel und Kirchberg,ski holiday, snow depth, ski resort, winter holiday\' href=\'http://www.schneehoehen.de/skigebiete/info/kitzbuehel\' style=\'text-decoration:none; color:#999; font-size:9px; font-weight:normal; font-family: georgia; font-style:italic; line-height:13px;\' target=\'_blank\'>More information about the ski resort Kitzb&uuml;hel und Kirchberg on Schneehoehen.de</a></div></div>

      <!-- Ende Schneehoehen.de Widget Integration -->
      <?php
    }
    elseif(date(\'n\')> 10 || date(\'n\') < 5 )
    {
      /* German */
      ?>
      <h4>Schneevorhersage</h4>
      <!-- Beginn Schneehoehen.de Widget Integration -->

      <div align="left" id="containerschneehoehen" style="margin:16px 0px 16px 0px"><iframe width="100%" height="410" scrolling="no" frameborder="0" style="background:#fff; border:1px solid #999; overflow:hidden;" id="sh_frame" name="sh_frame" src="http://www.schneehoehen.de/widgets/details/widget_schneebericht/kitzbuehel?size=small&theme=black&language=de&weather=true&links=true"></iframe><div style=\'background:#FFF; text-align:left; border:1px solid #999; width:100%; padding:6px 7px 5px 8px; margin-top:5px;\'><a id=\'sh_anchor\' title=\'Kitzbühel und Kirchberg,Skiurlaub, Schneeh&ouml;hen, Skigebiete, Winterurlaub\' href=\'http://www.schneehoehen.de/skigebiete/info/kitzbuehel\' style=\'text-decoration:none; color:#999; font-size:9px; font-weight:normal; font-family: georgia; font-style:italic; line-height:13px;\' target=\'_blank\'>Weitere Infos zum Skigebiet Kitzb&uuml;hel und Kirchberg auf Schneehoehen.de</a></div></div>

      <!-- Ende Schneehoehen.de Widget Integration -->
      <?php
    }
    ?>
购物链接
    if ($lang == \'en\') {
        $country = \'uk\';
    } else {
        $country = \'at\';
    }
    if ( (date(\'n\')> 10 || date(\'n\') < 5 )) {
        require(\'include/winter_gear.php\');
    } else {
        require(\'include/summer_gear.php\');
    }
    ?> -->
</div>

侧边栏代码或其他文件中的任何配置是否有问题?

我会很感激你的回答,非常感谢!

1 个回复
SO网友:Milan Hirpara

请在页脚中添加以下代码。上面的php文件包括JavaScript文件:

<?php
if ( is_active_sidebar( \'footer-1\' ) ){
    dynamic_sidebar( \'footer-1\' );
}

if ( is_active_sidebar( \'footer-2\' ) ){
    dynamic_sidebar( \'footer-2\' );
}

if ( is_active_sidebar( \'footer-3\' ) ){
    dynamic_sidebar( \'footer-3\' );
}
?>

相关推荐

将所有“非PHP”文件放在不同的服务器上

我想分开我的。wordpress使用的所有其他文件(图像、脚本等)中的php文件。所以我把它们放在不同的服务器上。我可以通过简单地将“siteurl”和“home”设置为文件服务器的url,使我的wordpress站点知道这些文件。这对图像来说很好,但破坏了其他一切(就像每个人都期望的那样)有人知道有更可行的方法吗?