0

升级到 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>
4

1 回答 1

1

他们删除了方法,阅读了升级指南。

http://jqueryui.com/upgrade-guide/1.9/#removed-rotate-method

文档说你必须使用这个:https ://github.com/cmcculloh/jQuery-UI-Tabs-Rotate让它工作。

于 2013-09-02T23:19:22.157 回答