Sharing widget areas between blogs – is this possible?
-
I have a multisite installation and on the top-level site have created a widget area called menu-bar – within which I am using the
JQuery Mega Menu Widget to display a multi-level nav bar.
I’d like to share this nav bar across all my sub-sites so after reading a few support articles on here tried this code://Add menu bar area function add_menubar_area() { ?><div style="clear:both"></div><?php switch_to_blog(1); if (is_sidebar_active('menubar-area')) { echo thematic_before_widget_area('menubar-area'); dynamic_sidebar('menubar-area'); echo thematic_after_widget_area('menubar-area'); } restore_current_blog(); } add_action('thematic_belowheader','add_menubar_area');
But it’s not working, the mega menus nav bar doesn’t show in my sub-site.
Can anyone help me out?
Thanks.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Sharing widget areas between blogs – is this possible?’ is closed to new replies.