2

使用下划线主题 (_s) 盯着 Wordpress 网站

我有一个侧边栏工作,但想在同一页面上制作第二个侧边栏。(包含不同的小部件)

我已将新的侧边栏添加到 functions.php 中,它出现在 Wordpress 登录屏幕中,我可以将小部件放入其中。但是,我无法让它显示在实际网页上。(第一个侧边栏工作正常)

任何人都知道如何做到这一点或知道教程......

谢谢

4

1 回答 1

0

您需要编辑主题文件夹中的“sidebar.php”文件。通常应该是:

<div id="secondary" class="widget-area" role="complementary">
    <?php do_action( 'before_sidebar' ); ?>

    <?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) : ?>
    <?php endif; // end sidebar-1 widget area ?>

</div><!-- #secondary -->

您将需要添加另一个查找另一个侧边栏的 if 语句。请务必通过您在 functions.php 文件中使用的任何内容来引用它。

如果您希望它出现在当前侧边栏下方,请务必在关闭“div”之前添加它,这样它仍然会在同一列中。我使用了“侧边栏下”:

<div id="secondary" class="widget-area" role="complementary">
    <?php do_action( 'before_sidebar' ); ?>

    <?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) : ?>
    <?php endif; // end sidebar-1 widget area ?>

    <?php if ( ! dynamic_sidebar( 'sidebar-lower' ) ) : ?>
    <?php endif; // end sidebar-lower widget area ?>

</div><!-- #secondary -->
于 2013-11-18T21:29:00.033 回答