Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 8th, 2012  |  syntax: None  |  size: 1.44 KB  |  hits: 20  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
This paste has a previous version, view the difference. Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. register_sidebar(array(
  2.         'name' => 'Footer',
  3.         'id' => 'footer_default',
  4.         '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'),
  5.         'before_widget' => '<div id="%1$s" class="oneFourth %2$s footerBox widgetBox">',
  6.         'after_widget' => '</div>',
  7.         'before_title' => '<h3><span>',
  8.         'after_title' => '</span></h3>'
  9. ));
  10.  
  11. register_sidebar(array(
  12.         'name' => 'Home Page Footer',
  13.         'id' => 'footer_home',
  14.         'description' => __('Widget area for the footer on the home page.', 'themetrust'),
  15.         'before_widget' => '<div id="%1$s" class="oneFourth %2$s footerBox widgetBox">',
  16.         'after_widget' => '</div>',
  17.         'before_title' => '<h3><span>',
  18.         'after_title' => '</span></h3>'
  19. ));
  20.  
  21. register_sidebar(array(
  22.         'name' => 'Page Footer',
  23.         'id' => 'footer_pages',
  24.         'description' => __('Widget area for the footer on pages.', 'themetrust'),
  25.         'before_widget' => '<div id="%1$s" class="oneFourth %2$s footerBox widgetBox">',
  26.         'after_widget' => '</div>',
  27.         'before_title' => '<h3><span>',
  28.         'after_title' => '</span></h3>'
  29. ));
  30.  
  31. register_sidebar(array(
  32.         'name' => 'Post Footer',
  33.         'id' => 'footer_posts',
  34.         'description' => __('Widget area for the footer on posts.', 'themetrust'),
  35.         'before_widget' => '<div id="%1$s" class="oneFourth %2$s footerBox widgetBox">',
  36.         'after_widget' => '</div>',
  37.         'before_title' => '<h3><span>',
  38.         'after_title' => '</span></h3>'
  39. ));