EDIT: I also want to add that activating this plugin crashes the "Media" part of Wordpress. :D
Seriously, what am I missing here?
This is my code:
<!--[if (gte IE 6)&(lte IE 8)]>
<?php
function rw_selectivizr(){
wp_register_script('selectivizr',plugins_url('/js/selectivizr-min.js', __FILE__ ), array(), '1.0.2');
wp_enqueue_script('selectivizr');
}
add_action('wp_head', 'rw_selectivizr');
?>
<![endif]-->
I am getting the error written in the title. I don't get it... Nothing I've been able to find online has been helpful as there are no white spaces there... The other 14 plugins I've written are UTF-8 (someone suggested changing the encoding to ANSI, which I thought was a stupid suggestion... tried it anyway, didn't help)
This is all the code, I don't get it.