Skip to content

Instantly share code, notes, and snippets.

@NikLP
Created March 24, 2022 16:27
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 NikLP/ba2dd314f7d76a11c0f90ae6692660f1 to your computer and use it in GitHub Desktop.
Save NikLP/ba2dd314f7d76a11c0f90ae6692660f1 to your computer and use it in GitHub Desktop.
Add inline styles to head tag
function customtheme_preprocess_html(&$variables) {
$variables['#attached']['html_head'][] = [
[
'#type' => 'html_tag',
'#tag' => 'style',
'#value' => 'custom-class { background: red; }'
],
'my-custom-theme'
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment