LoginSignup
10
12

More than 5 years have passed since last update.

WordPress 記事をランダムに表示してページングする方法

Last updated at Posted at 2016-02-26
session_start();

add_filter('posts_orderby', 'edit_posts_orderby');

function edit_posts_orderby($orderby_statement) {

    $seed = $_SESSION['seed'];
    if (empty($seed)) {
      $seed = rand();
      $_SESSION['seed'] = $seed;
    }

    $orderby_statement = 'RAND('.$seed.')';
    return $orderby_statement;
}

上記のコードを functions.php に追加すると、カテゴリ ページの記事がランダム順で並び、なおかつ、ページを切り替えても記事が重複して表示されることはありません。

10
12
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
12