get random posts wordpress
$randomPosts = get_posts(array(
'orderby' => 'rand',
'posts_per_page' => 5,
'tag' => $tag,
));
get random posts wordpress
$randomPosts = get_posts(array(
'orderby' => 'rand',
'posts_per_page' => 5,
'tag' => $tag,
));
wordpress php query randomise
//Create WordPress Query with 'orderby' set to 'rand' (Random)
$the_query = new WP_Query( array ( 'orderby' => 'rand', 'posts_per_page' => '1' ) );
// output the random post
while ( $the_query->have_posts() ) : $the_query->the_post();
echo '<li>';
the_title();
echo '</li>';
endwhile;
// Reset Post Data
wp_reset_postdata();
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us