Set dynamic widget to display widget area only on active pages/posts
-
I’d like to make a widget area display only on the pages/posts/category archives on which a widget is active. How can I accomplish this? Thus far, I have this in my functions.php but it’s not sufficient.
function child_before_posts_sidebar() { if (is_active_sidebar() ) { echo '<div class="before-posts-sidebar">'; dynamic_sidebar( 'before-posts-sidebar' ); echo '</div>'; } else { echo ''; } }
Thanks!
https://www.ads-software.com/extend/plugins/dynamic-widgets/
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Set dynamic widget to display widget area only on active pages/posts’ is closed to new replies.