I have a custom theme that supports widgets but when I view this is browser on localhost, the widgets don't show up. Inspecting this is firbug, I can see that primary and seconadry divs are being populated and the ul with class xoxo, but apparentky li's inside ul are missing.
what could be the issue:
This is what I see in firebug:
<div id="primary" class="widget-area">
<ul class="xoxo"> </ul>
</div>
<div id="secondary" class="widget-area">
<ul class="xoxo"> </ul>
My php is here:
<?php if ( is_sidebar_active('primary_widget_area') ) : ?>
<div id="primary" class="widget-area">
<ul class="xoxo">
<?php dynamic_sidebar('primary_widget_area'); ?>
</ul>
</div><!-- #primary .widget-area -->
<?php endif; ?>
<?php if ( is_sidebar_active('secondary_widget_area') ) : ?>
<div id="secondary" class="widget-area">
<ul class="xoxo">
<?php dynamic_sidebar('secondary_widget_area'); ?>
</ul>
</div><!-- #secondary .widget-area -->
<?php endif; ?>
A part of FUNCTiONS.PHP is below
// Register widgetized areas
function theme_widgets_init() {
// Area 1
register_sidebar( array (
'name' => 'Primary Widget Area',
'id' => 'primary_widget_area',
'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
'after_widget' => "</li>",
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
// Area 2
register_sidebar( array (
'name' => 'Secondary Widget Area',
'id' => 'secondary_widget_area',
'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
'after_widget' => "</li>",
'before_title' => '<h3 class="widget-title">',
'after_title' => '</h3>',
) );
} // end theme_widgets_init
add_action( 'init', 'theme_widgets_init' );
// Pre-set Widgets
$preset_widgets = array (
'primary_widget_area' => array( 'search', 'pages', 'categories', 'archives' ),
'secondary_widget_area' => array( 'links', 'meta' )
);
var_dump(dynamic_sidebar('primary_widget_area'));and see the output – We are the World Apr 7 '12 at 13:36dynamic_sidebar('primary_widget_area');with the one i commented and refresh the page. see if it has content. – We are the World Apr 7 '12 at 13:58