1 2 3 4 5 6 7 8 | <ul> <?php $args = array( 'numberposts' => 5, 'orderby' => 'rand' ); $rand_posts = get_posts( $args ); foreach( $rand_posts as $post ) : ?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> </ul> |
原文链接:https://xiaohost.com/615.html,转载请注明出处。
评论4