【发布时间】:2018-10-05 20:54:39
【问题描述】:
我正在尝试让特定侧边栏仅出现在使用特定模板的页面上,但我在 Wordpress 主题方面的经验并不丰富。
“新闻边栏”应显示在使用 home.php 模板的页面上:
<?php
// If the News Sidebar is active, display on the Posts page
if ( is_active_sidebar( 'sidebar-news' ) && is_page_template( 'home.php' ) ) { ?>
<aside id="sidebar-news" class="widget-area">
<?php dynamic_sidebar( 'sidebar-news' ); ?>
</aside><!-- #secondary -->
<?php } ?>
【问题讨论】:
标签: wordpress templates sidebar