I have a bunch of code that I tend to put into the header.php of every site I do which are specific to Internet Explorer.
I was wondering if there was a way to insert code into a 'standard' header.php.
Yes, I can simply modify the header. But the idea is to make this a plugin which is generic.
Specifically, I'd like to create a plugin to echo the following in the header immediately after the default stylesheet:
<!--[if IE]>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/ie.css" type="text/css" />
<![endif]-->