我真的很努力解决这个问题..
我想在我的 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的问候