0
我的例如 要求 - 我有20個職位(WordPress的) - 我需要10後從升序(從自定義元鍵排序) - 然後我需要顯示隨機從已經1個員額模板頁面排序(10個)的數據WordPress的排序隨機數據已經排序升序
我在function.php
add_filter('the_posts', function($posts, WP_Query $query)
{
if($pick = $query->get('_shuffle_and_pick'))
{
shuffle($posts);
$posts = array_slice($posts, 0, (int) $pick);
}
return $posts;
}, 10, 2);
代碼
$args =array('post_type' => 'products',
'posts_per_page' => 10,
'meta_key' => '_showoption_',
'orderby' => 'meta_value',
'order' => 'asc',
'no_found_rows' => 'true',
'_shuffle_and_pick' => 1 ,
);
$my_query = new WP_Query($args);
我的結果:從10上升後1周後:但我需要1個隨機從這個10後