wordpress实现随机文章
ralix曾发布过关于wordpress随机文章的相关插件的点评文章(“wordpress插件之随机文章类插件点评”),百度一下也能搜出很多其他纯代码的方式,大致代码如下:PHPcode3"> 'post','orderby' => 'rand' ); $posts = new WP_Query( $query ); if ( $posts->have_posts() ) { while( $posts->have_posts() ) : $posts->the_post(); the_content(); endwhile; } wp_reset_query(); ?> 原文链接:https://www.f2er.com/wordpress/15384.html