
Untitled
By: a guest on
May 8th, 2012 | syntax:
None | size: 1.44 KB | hits: 20 | expires: Never
register_sidebar(array(
'name' => 'Footer',
'id' => 'footer_default',
'description' => __('This is the default widget area for the footer. This will be displayed if the other footers have not been populated with widgets.', 'themetrust'),
'before_widget' => '<div id="%1$s" class="oneFourth %2$s footerBox widgetBox">',
'after_widget' => '</div>',
'before_title' => '<h3><span>',
'after_title' => '</span></h3>'
));
register_sidebar(array(
'name' => 'Home Page Footer',
'id' => 'footer_home',
'description' => __('Widget area for the footer on the home page.', 'themetrust'),
'before_widget' => '<div id="%1$s" class="oneFourth %2$s footerBox widgetBox">',
'after_widget' => '</div>',
'before_title' => '<h3><span>',
'after_title' => '</span></h3>'
));
register_sidebar(array(
'name' => 'Page Footer',
'id' => 'footer_pages',
'description' => __('Widget area for the footer on pages.', 'themetrust'),
'before_widget' => '<div id="%1$s" class="oneFourth %2$s footerBox widgetBox">',
'after_widget' => '</div>',
'before_title' => '<h3><span>',
'after_title' => '</span></h3>'
));
register_sidebar(array(
'name' => 'Post Footer',
'id' => 'footer_posts',
'description' => __('Widget area for the footer on posts.', 'themetrust'),
'before_widget' => '<div id="%1$s" class="oneFourth %2$s footerBox widgetBox">',
'after_widget' => '</div>',
'before_title' => '<h3><span>',
'after_title' => '</span></h3>'
));