Guest User

Untitled

a guest
Oct 19th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. add_action( 'widgets_init', 'spasalon_product_widgets_init', 999 );
  2. function spasalon_product_widgets_init() {
  3. register_sidebar( array(
  4. 'name' => __( 'Homepage additional section widget area', 'spasalon' ),
  5. 'id' => 'sidebar-additional',
  6. 'description' => __( 'Homepage additional section widget area', 'spasalon' ),
  7. 'before_widget' => '<div id="%1$s" class="col-md-2 widget %2$s">',
  8. 'after_widget' => '</div>',
  9. 'before_title' => '<h4 class="widget-title">',
  10. 'after_title' => '</h4>'
  11. ) );
  12. }
Add Comment
Please, Sign In to add comment