Skip to content

Instantly share code, notes, and snippets.

@aarifhsn
Created August 6, 2015 05:24
Show Gist options
  • Save aarifhsn/0e9168e2f3749a55a1b5 to your computer and use it in GitHub Desktop.
Save aarifhsn/0e9168e2f3749a55a1b5 to your computer and use it in GitHub Desktop.
/**
* Register widgetized area and update sidebar with default widgets
*/
function thirteenmag_widget_areas() {
register_sidebar( array(
'name' => __( 'Top Sidebar', 'thirteenmag' ),
'id' => 'right_sidebar',
'before_widget' => '<div class="single_widget fix">',
'after_widget' => '</div>',
'before_title' => '<div class="widget_title"><h3>',
'after_title' => '</h3></div>',
) );
};
add_action('widgets_init', 'thirteenmag_widget_areas');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment