我搜索和搜索,我发现与这种情况相关的唯一一件事是 jQuery 低于 1.6,我相信 wordpress 远远高于这个事实......我在 Wordpress 网站上构建了一个 jShowOff 内容旋转器,我想有数字幻灯片链接,因为我认为默认情况下它会显示,而是在每个链接中显示“未定义”....将鼠标悬停在内容旋转器上,它会弹出计数器,因为标题 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) 提前谢谢你 =)