WordPress侧边栏区域未出现


Wordpress SideBar area not Appearing

我想在侧边栏上放置一个广告,但小部件区域出现在 wp-admin 面板中(外观>小部件)

但是,当我将广告放置在侧边栏小部件区域中时,它不会出现在网站上。

使用下面的代码创建了小部件区域,并将其放置在我主题的功能.php文件中。我哪里出错了?

     if (function_exists('register_sidebar')) {  
     register_sidebar(array(  
      'name' => 'Sidebar Widgets',  
      'id'   => 'sidebar-widgets',  
      'description'   => 'Widget Area',  
      'before_widget' => '<div id="one" class="two">',  
      'after_widget'  => '</div>',  
      'before_title'  => '<h2>',  
      'after_title'   => '</h2>'  
     ));  
    }

我会很感激的。

下面是我的页面模板。

<?php
/**
The template for displaying all pages.
*/
get_header(); 
?>
<div id="main" class="<?php echo $solid_content_class; ?> clearfix" role="main">
<?php 
do_action('solid_before_content'); 
while ( have_posts() ) : the_post();
get_template_part( 'lib/content/content', 'page' ); 
endwhile; // end of the loop.
do_action('solid_after_content'); 
// If the theme supports comments in pages and comments are open or we have at least 
one comment, load up the comment template
if( solid_theme_supports( 'comments', 'pages' ) && ( comments_open() || '0' != 
get_comments_number() )  ) comments_template( '', true ); 
?>
</div><!-- #main -->
<?php if( $solid_sidebar_location === 'left' || $solid_sidebar_location === 'right' ) 
{ ?>
<aside id="sidebar" class="sidebar <?php echo $solid_sidebar_class; ?>">
    <div id="sidebar-main" class="sidebar">
        <?php get_sidebar(); ?>
    </div><!--sidebar-main-->
</aside>
<?php }
get_footer(); ?>'
function debatingday_widgets_init() 
{
    // Primary Widget area (left, fixed sidebar)
    register_sidebar( array(
        'name' => __( 'Primary Widget Area', 'debatingday' ),
        'id' => 'primary-widget-area',
        'description' => __( 'Here you can put one or two of your main widgets (like an intro text, your page navigation or some social site links) in your left sidebar. The sidebar is fixed, so the widgets content will always be visible, even when scrolling down the page.', 'debatingday' ),
        'before_widget' => '<div class="s-widget" id="%1$s">',
        'after_widget' => '</div>',
        'before_title' => '<h5><i class="fa fa-folder-open color"></i> ',
        'after_title' => '</h5>',
    ) );

    // Secondary Widget area (right, additional sidebar)
    register_sidebar( array(
        'name' => __( 'Secondary Widget Area', 'debatingday' ),
        'id' => 'secondary-widget-area',
        'description' => __( 'Here you can put all the additional widgets for your right sidebar.', 'debatingday' ),
        'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
        'after_widget' => '</li>',
        'before_title' => '<h3 class="widget-title">',
        'after_title' => '</h3>',
    ) );
}
/* Register sidebars by running debatingday_widgets_init() on the widgets_init hook. */
add_action( 'widgets_init', 'debatingday_widgets_init' );