我已经设置了两个侧栏,正在运行php浏览器检测插件:http://wordpress.org/plugins/php-browser-detection/ 我正在尝试使用下面的代码显示Internet上的倒计时ie侧边栏Explore少于版本9。不幸的是,IE 9仍在倒计时边栏中。
<?php if (is_lt_IE9()) : ?>
<?php if (function_exists(\'dynamic_sidebar\') && dynamic_sidebar (\'countdown-ie\')) : else : ?>
<div class="pre-widget"> <p><strong>Widgetized area 1</strong></p>
<p>This panel is active and ready for you to add some widgets via the WP Admin</p>
</div>
<?php endif; ?>
<?php else : ?>
<?php if (function_exists(\'dynamic_sidebar\') && dynamic_sidebar (\'countdown\')) : else : ? >
<div class="pre-widget"> <p><strong>Widgetized area 2</strong></p>
<p>This panel is active and ready for you to add some widgets via the WP Admin</p>
</div>
<?php endif; ?>
<?php endif; ?>
这里有一个链接:http://steveabraham.com/有人知道我做错了什么吗?