我是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和模板页面中使用此补充工具栏。