On July 19, 2013 at 7:39 pm
The right sidebar should not be on home. the theme was made this way.
To add a second footer widget add this to your functions.php:
register_sidebar(array(
‘name’ => __(‘Footer2 Widgets’, ‘zenon’),
‘id’ => ‘foot2_sidebar’,
‘description’ => __(‘Widget Area for the Footer’, ‘zenon’),
‘before_widget’ => ‘<li id="%1$s" class="widget %2$s"><div class="widget_wrap">‘,
‘after_widget’ => ‘</div>‘,
‘before_title’ => ‘<h3 class="widgettitle">‘,
‘after_title’ => ‘</h3>‘
));
Right After this:
register_sidebar(array(
‘name’ => __(‘Footer Widgets’, ‘zenon’),
‘id’ => ‘foot_sidebar’,
‘description’ => __(‘Widget Area for the Footer’, ‘zenon’),
‘before_widget’ => ‘<li id="%1$s" class="widget %2$s"><div class="widget_wrap">‘,
‘after_widget’ => ‘</div>‘,
‘before_title’ => ‘<h3 class="widgettitle">‘,
‘after_title’ => ‘</h3>‘
));
And this to your footer.php:`