Skip to content

Instantly share code, notes, and snippets.

@ajuliano
Created December 15, 2014 16:18
Show Gist options
  • Save ajuliano/6fc4661c5cedae9fb02c to your computer and use it in GitHub Desktop.
Save ajuliano/6fc4661c5cedae9fb02c to your computer and use it in GitHub Desktop.
Surfa Lyckligt (Browsehappy) i WordPress-tema
/**
* Browsehappy
*
* Information om föråldrar webbläsare till besökare med lte IE8.
*
*/
function intervaro_browsehappy() {
$output = '
<!--[if lte IE 8]>
<p class="browsehappy" style="background-color: #333; position: absolute; top: 0; left: 0; right: 0; padding: 12px 24px; margin: 0; color: #FFF;z-index: 1000;">Du använder en <strong>föråldrad</strong> webbläsare. Alla funktioner fungerar inte i din webbläsare. Var vänlig <a href="http://browsehappy.com/" style="color: #FFF;">uppgradera din webbläsare</a> för att förbättra din upplevelse och öka din säkerhet.</p>
<![endif]-->';
echo $output;
}
add_action( 'wp_footer', 'intervaro_browsehappy', 10 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment