Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Created October 15, 2019 07:44
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 vanaf1979/b6f5d57da6f5d2fa39477ec5dfb458d4 to your computer and use it in GitHub Desktop.
Save vanaf1979/b6f5d57da6f5d2fa39477ec5dfb458d4 to your computer and use it in GitHub Desktop.
<?php
function add_noscript_to_head() {
echo '<noscript>';
echo '<link rel="stylesheet" href="assets/css/style-fallback.css">';
echo '</noscript>';
}
add_action( 'wp_head' , 'add_noscript_to_head' , 100 , 0 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment