Advertisement
fingli

widget.php

Jul 7th, 2011
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1.     // Bottom Sidebar Widget Area
  2.     register_sidebar( array (
  3.         'name'          => __( 'Bottom Widget Area', 'redline' ),
  4.         'description'   => __( 'Bottom widget area', 'redline' ),
  5.         'id'            => 'bottom-widget-area',
  6.         'before_widget' => '<div id="%1$s" class="widget %2$s">',
  7.         'after_widget'  => '</div>',
  8.         'before_title'  => '<h3 class="widget-title">',
  9.         'after_title'   => '</h3>'
  10.     ) );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement