Get random post in Wordpress

后端 未结 5 1206
你的背包
你的背包 2021-02-19 12:00

How do I get a random post in Wordpress?

I would like to display a button on a page that, when pressed, goes to a random post from the blog. I don\'t want a random post

5条回答
  •  眼角桃花
    2021-02-19 12:42

    Check This

      5, 'orderby' => 'rand' ); $rand_posts = get_posts( $args ); foreach( $rand_posts as $post ) : ?>

提交回复
热议问题