Advertisement
brooklyn448

functionchild

Jun 28th, 2012
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. // Area 8, located in the top. Empty by default.
  2. register_sidebar( array(
  3. 'name' => __( 'Second Top Widget Area', 'twentyten' ),
  4. 'id' => 'second-top-widget-area',
  5. 'description' => __( 'The second top widget area', 'twentyten' ),
  6. 'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
  7. 'after_widget' => '</li>',
  8. 'before_title' => '<h3 class="widget-title">',
  9. 'after_title' => '</h3>',
  10. ) );
  11.  
  12. // Area 9, located in the top. Empty by default.
  13. register_sidebar( array(
  14. 'name' => __( 'Third Top Widget Area', 'twentyten' ),
  15. 'id' => 'third-top-widget-area',
  16. 'description' => __( 'The third top widget area', 'twentyten' ),
  17. 'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
  18. 'after_widget' => '</li>',
  19. 'before_title' => '<h3 class="widget-title">',
  20. 'after_title' => '</h3>',
  21. ) );
  22.  
  23. // Area 10, located in the top. Empty by default.
  24. register_sidebar( array(
  25. 'name' => __( 'Fourth Top Widget Area', 'twentyten' ),
  26. 'id' => 'fourth-top-widget-area',
  27. 'description' => __( 'The fourth top widget area', 'twentyten' ),
  28. 'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
  29. 'after_widget' => '</li>',
  30. 'before_title' => '<h3 class="widget-title">',
  31. 'after_title' => '</h3>',
  32. ) );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement