我有一个div,其中会出现推荐信。 我想自动从左到右滑动并更改另一个推荐。
我怎样才能使用jquery?我正在使用wordpress。
这是代码
<div class="testimonial-box fl">
<?php if ( have_posts() ): ?>
<ul class="testi-post-s">
<?php query_posts('cat=222&showposts=2'); while ( have_posts() ) : the_post(); ?>
<li class="clr">
<article>
<div class="testi-post-box clearfix">
<div class="testi-post-p"><?php the_content(); ?></div>
</div>
</article>
</li>
<?php endwhile; ?>
</ul>
<?php else: ?>
<h3>No posts to display</h3>
<?php endif; ?>
</div>
非常感谢