Guest User

Untitled

a guest
May 25th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. add_action( 'widgets_init', 'create_new_widget' );
  2. function create_new_widget()
  3. {
  4. register_sidebar( array(
  5. 'name' => __( 'Custom Sidebar', 'theme-slug' ),
  6. 'id' => 'custom_sidebar',
  7. 'description' => __( 'Your widget description here', 'theme-slug' ),
  8. ) );
  9. }
  10. After that you can call this sidebar by following code. Wherever you want add the following code in that particular place.
  11.  
  12. dynamic_sidebar( 'left-sidebar' );
Add Comment
Please, Sign In to add comment