可能有更优雅的方法来做这类事情,但使用代码最快捷、最简单的方法是将PHP条件从CSS条件中移出。e、 g.更改此项:
<!--[if lt IE 9]><?php if(is_home() )?>
<script type="text/javascript" src="<?php bloginfo(\'template_url\'); ?>/scripts/unitpngfix.js"></script>
。。。对此:
<?php if( is_home() ) { ?>
<!--[if lt IE 9]>
<script type="text/javascript" src="<?php bloginfo(\'template_url\'); ?>/scripts/unitpngfix.js"></script>
<?php } ?>
另外:您是否错过了此处CSS条件的关闭?
<?php if( is_home() ) { ?>
<!--[if lt IE 9]>
<script type="text/javascript" src="<?php bloginfo(\'template_url\'); ?>/scripts/unitpngfix.js"></script>
-->
<?php } ?>