我正在尝试在我的网站上添加Twitter Feed,但侧边栏没有显示。 我的主题是由一些人从零开始创建的。
function.php
function arphabet_widgets_init() {
register_sidebar( array(
'name' => 'Home right sidebar',
'id' => 'home_right_1',
'before_widget' => '<div>',
'after_widget' => '</div>',
'before_title' => '<h2 class="rounded">',
'after_title' => '</h2>',
) );}
add_action( 'widgets_init', 'arphabet_widgets_init' );
的sidebar.php
<?php if ( is_active_sidebar( 'home_right_1' ) ) : ?>
<div id="primary-sidebar" class="primary-sidebar widget-area" role="complementary">
<?php dynamic_sidebar( 'home_right_1' ); ?>
</div><!-- #primary-sidebar -->
<?php endif; ?>
的index.php
<?php get_sidebar(); ?>
哪里可能是问题?