Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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' )
);
share|improve this question
var_dump(dynamic_sidebar('primary_widget_area')); and see the output – We are the World Apr 7 '12 at 13:36
@JackSpairow can you be a bit more specific, I am a noob to both php and wordpress – Mike Apr 7 '12 at 13:56
edit this dynamic_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
It shows boolean flase – Mike Apr 7 '12 at 14:03
that might not be the widget area's name. – We are the World Apr 7 '12 at 14:08
show 3 more comments

closed as off topic by Jonathan Sampson Apr 7 '12 at 14:15

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.