Tagged: Shortcodes, widgets
Hi,
There’s a PHP snippet for a custom widget area in the header. That works fine but I want to have a widget area for the top-bar. Is that possible too?
The snippet below is for the header:
add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' );
function enfold_customization_header_widget_area() {
dynamic_sidebar( 'header' );
}
Thanks, Alice