免费《新手做网站视频教程》,在线观看,如果你想从零开始自己做网站,点击开始吧!

WordPress single页获取随机文章

  1. 首页
  2. »
  3. 图文教程
  4. »
  5. WordPress建站教程
  6. »
  7. WordPress single页获取随机文章

文章目录

<?php
    // 获取随机文章
    $args = array( 'numberposts' => 10, 'orderby' => 'rand', 'post_status' => 'publish' );
    $rand_posts = get_posts( $args );
    foreach( $rand_posts as $post ) : ?>
        <li>
            <div class="xwz-title-box clearFloat">
                <a href="<?php the_permalink();?>" class="floatLeft"><?php the_title()?></a>
                <span class="floatRight">(<?php echo $usewp->get_views();?> 次浏览)</span>
            </div>
            <div class="xwz-desc-box">
                <!--获取摘要-->
                <?php echo get_the_excerpt(); ?>
            </div>
        </li>
<?php endforeach; wp_reset_query();?>

推荐阅读

联系我