Advertisement
Guest User

Untitled

a guest
Nov 1st, 2014
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. public function init(){
  2. add_action('widgets_init', array($this, 'registerSidebars'),20);
  3. }
  4.  
  5. public function registerSidebars(){
  6. $args = array(
  7. 'name' => __('Page Middle Sidebar %d', APP_TD),
  8. 'id' => 'page-middle-sidebar',
  9. 'description' => __('This sidebar is used to place the add in page content above and below', APP_TD),
  10. 'class' => '',
  11. 'before_widget' => '<li id="%1$s" class="widget %2$s">',
  12. 'after_widget' => '</li>',
  13. 'before_title' => '<h2 class="widgettitle">',
  14. 'after_title' => '</h2>' );
  15. register_sidebars(2, $args);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement