下面是我的 testimonials.php 文件。我想改变推荐的旋转速度,但是我不确定要写什么代码。感谢您的帮助!
<?php
/**
* Testimonials
*
*/
?>
<div class="testimonials sixteen columns alpha omega marT20 marB40 padT40 padB20">
<?php
$args = array(
'post_type' => 'testimonial',
'order' => 'DSC',
'posts_per_page' => 100
);
$query = new WP_Query($args); ?>
<ul class="testimonial-content">
<?php while ( $query->have_posts() ) : $query->the_post(); ?>
<li>
<h5 class="marB8"><?php the_content(); ?></h5>
<h5 class="marB0"><strong><?php the_title(); ?></strong></h5>
</li>
<?php endwhile; wp_reset_query(); ?>
</ul>
</div>