Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. add_action( 'widgets_init', 'theme_slug_widgets_init' );
  2. function theme_slug_widgets_init() {
  3. register_sidebar( array(
  4. 'name' => __( 'Main Sidebar', 'theme-slug' ),
  5. 'id' => 'sidebar-1',
  6. 'description' => __( 'Widgets in this area will be shown on all posts and pages.', 'theme-slug' ),
  7. 'before_widget' => '<li id="%1$s" class="widget %2$s">',
  8. 'after_widget' => '</li>',
  9. 'before_title' => '<h2 class="widgettitle">',
  10. 'after_title' => '</h2>',
  11. ) );
  12. }
  13.  
  14. <--! Вывод сайдбара -->
  15.  
  16. <?php dynamic_sidebar('Main Sidebar'); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement