3

WordPress を使用して、私のメイン ページで、スティッキーが最初に表示されている間、ページネーション全体で一貫したランダムな投稿のクエリを作成できるようにしたいと考えています。一貫したフローを作成することはできましたが、残りの投稿のようにランダムに表示される付箋を見逃しています.

function custom_query($query) {
    global $custom_query;
    if ( $custom_query && strpos($query, 'ORDER BY RAND()') !== false ) {
        $query = str_replace( 'ORDER BY RAND()', $custom_query, $query );
    }
    return $query;
}

add_filter( 'query', 'custom_query' );
$paged = ( get_query_var('paged') ) ? get_query_var('paged') : 1;
$seed = $_SESSION['seed'];

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

global $custom_query;
$custom_query = " ORDER BY rand($seed) ";

$args = array(
    'caller_get_posts' => 1,
    'orderby' => 'rand',
    'paged' => $paged,
);

query_posts($args);
$custom_query = '';

編集:あなたの提案に基づいて、以下のコードを使用して解決できました:

$sticky_post_ids = get_option('sticky_posts');
function mam_posts_query($query) {
   global $mam_posts_query;
   if ($mam_posts_query && strpos( $query, 'ORDER BY RAND()') !== false ) {
      $query = str_replace( 'ORDER BY RAND()', $mam_posts_query, $query );
   }
   return $query;
}
add_filter( 'query','mam_posts_query' );
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$seed = date('Ymdh'); // Sets an hourly random cache
global $mam_posts_query;
$mam_posts_query = " ORDER BY rand($seed) ";

$args = array(
    'orderby' => 'rand',
    'paged' => $paged,
    'post__not_in' => get_option( 'sticky_posts' )
);
$projects = query_posts($args);
$mam_posts_query = '';

if ( $paged === 1 ) {
    $stickies = get_posts( array('include' => $sticky_post_ids) );
    $projects = array_merge( $stickies, $projects );
}

アドバイスありがとう!

4

2 に答える 2

1

すべての訪問者に同じランダムな投稿を表示しても構わない場合は、transient と get_posts() を使用できます。

$my_random_posts = get_transient('my_random_posts');
if (!$my_random_posts) {
  $sticky_post_ids = get_option('sticky_posts');
  $my_random_posts = get_posts(array(
                                 'exclude' => $sticky_post_ids,
                                 'orderby' => 'rand',
                               ));

  if ($sticky_post_ids) {
    $sticky_posts = get_posts(array(
                                 'include' => $sticky_post_ids,
                               ));
    $my_random_posts = array_merge($sticky_posts, $my_random_posts);
  }

  set_transient('my_random_posts', $my_random_posts , 900); # 15 minutes
}
于 2013-04-27T15:31:36.430 に答える