saragreenlaw
12/7/2014 - 5:55 AM

Add widget area using hooks

Add widget area using hooks

//* Comment
add_action( 'hook', 'your_widget' );
	function your_widget() {
		genesis_widget_area( 'your-widget', array(
			'before' => '<div class="your_widget widget-area">',
			'after' => '</div>',
	) );
}