Guest User

Untitled

a guest
Sep 23rd, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. function spasalon_some_widgets(){
  2.  
  3. unregister_sidebar( 'sidebar-project' );
  4. register_sidebar( array(
  5. 'name' => __( 'Project content widget area', 'spasalon' ),
  6. 'id' => 'sidebar-project',
  7. 'description' => __( 'Project content widget area', 'spasalon' ),
  8. 'before_widget' => '<div id="%1$s" class="col-md-4 widget item-product %2$s">',
  9. 'after_widget' => '</div>',
  10. 'before_title' => '<h4 class="widget-title">',
  11. 'after_title' => '</h4>'
  12. ) );
  13. }
  14. add_action( 'widgets_init', 'spasalon_some_widgets', 11 );
Add Comment
Please, Sign In to add comment