想要向我的WordPress主题添加另一个侧边栏

时间:2019-03-02 11:03:56

标签: php wordpress

我是wordpress开发和PHP的新手。在我现有的主题中,它们是现有的侧边栏,用于在页脚中显示内容:

<?php


if ( ! is_active_sidebar( 'sidebar-1' ) ) {
    return;
}
?>

<aside id="secondary" class="widget-area" role="complementary">
    <?php dynamic_sidebar( 'sidebar-1' ); ?>
</aside><!-- #secondary -->

我想使用在function.php'sidebar-4'中创建的新边栏

如何在sidebar.php和模板页面中使用此补充工具栏。

0 个答案:

没有答案
相关问题