jShowOff - 数字链接显示'undefined'(在wordpress中)

时间:2012-07-13 01:28:04

标签: jquery wordpress jquery-plugins

我搜索和搜索,我发现相对于这种情况唯一的事情是jQuery低于1.6,我相信wordpress已经超过了......我在Wordpress网站上构建了一个jShowOff Content Rotator,并且我希望有数字幻灯片链接,因为我认为它会默认显示,但在每个链接中显示'undefined'....我尝试通过制作一个计数器并给出标题反击的解决方法,工作就像一个魅力,但当你将鼠标悬停在内容旋转器上它会弹出计数器,因为标题xD看起来很丑陋....任何想法?这是代码:

<div id="recentes">
                <?php $my_query = new WP_Query('category_name=oficiais&posts_per_page=7');
                    while ($my_query->have_posts()) : $my_query->the_post();
                    $do_not_duplicate[] = $post->ID; ?>
                    <div><p>
                    <?php the_post_thumbnail('recent-thumbnail',array('title' => "")); ?>
                    <span class="recentes_tit"><?php the_title(); ?></span><br /><p><?php $myExcerpt = get_the_excerpt();
                    $tags = array("<p>", "</p>");
                    $myExcerpt = str_replace($tags, "", $myExcerpt);
                    $myExcerpt = str_replace("<br />", " ", $myExcerpt);
                    echo $myExcerpt;
                    ?></p class="content_readmore"><a href="<?php the_permalink(); ?>">Ver artigo</a></p></div>
                <?php endwhile; ?>
                </div>
                <script type="text/javascript">
                    jQuery(document).ready(function(){ jQuery("#recentes").jshowoff({
                        autoPlay:true,
                        changeSpeed:1500,
                        controls:true,
                        effect:"slideLeft",
                        hoverPause:true,
                        speed:4500,
                    }); });
                </script>

仅供参考,假设我调用了jShowOff css和脚本x)提前谢谢你=)

1 个答案:

答案 0 :(得分:2)

今天我碰巧遇到了同样的问题。谷歌搜索并获得此链接:https://github.com/ekallevig/jShowOff/issues/38

话说:

从:

更改jquery.jshowoff.js的第231行
var linktext = $(this).attr('title') != '' ? $(this).attr('title') : i+1;

为:

var linktext = $(this).prop('title') != '' ? $(this).prop('title') : i+1;

就我而言,这很有用。