How to show random post in WordPress without plugins

Random Post

Show random content post and increase visiting time of your visitors.

How to show Random post

follow simple steps and add code in your website’s theme.

single.php

paste this code anywhere you want to show random post.

<?php
$args = 'orderby=rand&numberposts=6';
$posts = get_posts($args); foreach($posts as $post) { ?>
<div class="singlerandomepost"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"> <?php the_post_thumbnail( 'small-thumbnail'); ?> <?php the_title(); ?></a></div>
<?php } ?>

then save you single.php file and see changes.

Watch Video

[embedyt] https://www.youtube.com/watch?v=onEnfBxhLBU[/embedyt]