wordpress调用随机文章最直接的用法
在需要的位置放入下面的代码。
<?php
$args = array( 'numberposts' => 5, 'orderby' => 'rand', 'post_status' => 'publish' );
$rand_posts = get_posts( $args );
foreach( $rand_posts as $post ) : ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
五个wordpress调用随机文章的方法:https://www.cnblogs.com/ytkah/p/11730808.html
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。