Created
December 15, 2014 16:18
-
-
Save ajuliano/6fc4661c5cedae9fb02c to your computer and use it in GitHub Desktop.
Surfa Lyckligt (Browsehappy) i WordPress-tema
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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