It's quite simple, actually
-
For those posting the less than favorable reviews about inline styles, I’m sorry it didn’t work out for you. For future reference, these are imposed by the theme customizer. This is a mere proof of concept in the event you want to allow your clients to tweak/customize the theme.
The tradeoff to the customizer is inline styles. If you don’t need them, you can just dequeue and delegate to the child theme like so:
add_action( 'wp_enqueue_scripts', 'customize_it_yourself'); function customize_it_yourself() { wp_deregister_style( 'skeleton-style' ); }
Poof. Gone.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘It's quite simple, actually’ is closed to new replies.