Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexkingorg/2210020 to your computer and use it in GitHub Desktop.
Save alexkingorg/2210020 to your computer and use it in GitHub Desktop.
Remove inline CSS styles for Colors from FavePersonal header
<?php
// remove the CSS for Colors from the HTML (if you want to load it via child theme instead)
function favepersonal_remove_inline_color_css() {
remove_action('wp_head', 'cfcp_color_css_min', 8);
}
add_action('wp', 'favepersonal_remove_inline_color_css', 11);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment