升级到Wordpress版本3.6后,我的主页滑块停止自动旋转,超级鱼菜单重叠,我的背景滑块消失。在底层页面上所有的东西都很好,这让我相信问题在于主页滑块代码本身。 (http://www.thesavvybroker.com/)我发现了麻烦的代码(“slider.php”)并在下面发布了它。我认为它需要更新才能与更新的框架一起正常工作,但是,我是一名新手程序员,我更新脚本的所有努力都失败了。起初我以为是和&&我改为OR,但那不是它。非常感谢任何想法。
<script type="text/javascript">
<?php $slider_timer = (ts_get_option('ts_slider_timer')=='off') ? 0 : ts_get_option('ts_slider_timer').'000'; ?>
jQuery(document).ready(function($) {
$("#display").tabs({ fx: { opacity: 'toggle', duration: 'fast' } }).tabs('rotate', <?php echo $slider_timer; ?>, true);
});
</script>
答案 0 :(得分:1)
他们删除了该方法,阅读了升级指南。
http://jqueryui.com/upgrade-guide/1.9/#removed-rotate-method
文档说你必须使用它:https://github.com/cmcculloh/jQuery-UI-Tabs-Rotate才能使它工作。