为什么jQuery和循环不能在Wordpress中运行?

时间:2009-10-23 23:24:02

标签: jquery wordpress post cycle categories

我真的很担心这个问题..

我希望在我的wordpress index.php中通过循环播放我的精选帖子的幻灯片,但是好吧...... wordpress不会。

首先,我将标题中的循环和脚本排入队列:

<?php
   wp_enqueue_script('jquery.cycle.all.min', '/wp-content/themes/black1/js/jquery.cycle.all.min.js', array('jquery'));
   wp_enqueue_script('jquery_script', '/wp-content/themes/black1/js/jquery_script.js');
?>

这是我的jQuery脚本:

$(document).ready(function(){  
$('#slideshow').cycle({ 
    fx: 'fade' 
});
});

然后我将此代码放在我模板的index.php中,以显示特色类别中的最近5篇帖子:

<div id="slideshow">
<?php query_posts('cat=88&showposts=5'); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="slideshow_post">
    <div class="slideshow_overlay">
        <h2 class="topTitle"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
        <p class="byline"><?php echo get_post_meta($post->ID, 'beschreibung', true); ?></p>
    </div>
    <a class="slideshow_pic" href="<?php the_permalink() ?>"><img src="images/testbild.jpg" alt="test"/></a>
</div>
<?php endwhile;?>

它看起来非常整洁,但它根本没有动画效果 - 只需将5个帖子放在另一个之下。

这是我的CSS:

#slideshow {
  width: 700px;
  height: 400px;
  background: #ccc;
  margin: 0 0 20px 0;
  border: 1px solid #ddd;
  }
.slideshow_post{
  width: 640px;
  height: 360px;
  background: #777;
  padding: 2px;
  position: relative;
  }
.slideshow_overlay {
  width: 640px;
  height: 100px;
  position: absolute;
  background: url(images/overflow.png) repeat;
  clear: none;
  bottom: 0;
  }
a.slideshow_pic{
  width: 640px;
  height: 360px;
  overflow: hidden;
  padding: 0;
  }

真正让我兴奋的是,这个动画与css和东西都在一个新的html页面中工作。 ???

我做错了什么?

来自德国的问候 KAIN

0 个答案:

没有答案