0

これが私の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>
4

1 に答える 1

0

クラス名 から判断するとtestimonial-content、WordPress の証言ウィジェットを使用している可能性があります。ここで最後の設定を確認してください。

お客様の声ウィジェットのスクリーンショット

これをプログラムで変更する必要がある場合は、コード内のどこで使用されているかを追跡し/wp-content/plugins/testimonials-widget/ます。

于 2012-10-22T17:58:00.377 に答える