📌  相关文章
📜  获取随机帖子 wordpress - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:34.946000             🧑  作者: Mango

代码示例1
$randomPosts = get_posts(array(
   'orderby' => 'rand',
   'posts_per_page' => 5,
   'tag' => $tag,
));