Customizer: CSS changes not persistent
OK. Even though I wasn’t able to figure it out with CSS and wp_head() I managed to hack something that works. <?php $sidebar_background_color = get_theme_mod(‘design-sidebar-background-color’); ?> <aside style=”background-color: <?php $sidebar_background_color; ?>;”> <?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar() ) : ?> <?php endif; ?> </aside> Since I could manipulate DOM and HTML just fine I decided … Read more