在WordPress上旋转帖子

时间:2016-10-02 12:10:12

标签: wordpress

我正在尝试轮播帖子。它显示第一个并停止。有人可以帮忙吗?

<?php
    $args = array( 'post_type' => 'Image Gallery', 'posts_per_page' => 1 );
    $loop = new WP_Query( $args );
    while ( $loop->have_posts() ) : $loop->the_post();
    echo '<div class="entry-content">';
    echo '<li><span>';
    the_post_thumbnail();
    echo '</span><div><h3>Title</h3></div></li>';
    echo '</div>';
    endwhile;
?>  

干杯!

0 个答案:

没有答案