Redirect WordPress users to a random post

How To Redirect Website Users And Viewers To A Random Post On WordPress

Redirect WordPress website users and visitors to a random post via link, button, image, menu, and more.

[Normal_Box]Redirect WordPress Website Users and Visitors To A Random Post

How To Redirect Website Users To A Random Post

This is written for instances where you want to redirect your WordPress website users and viewers to a random post, via menu item, page, plain ol’ text link, button, etc using SEO friendly redirect codes.

  • For other random post scenarios read this post to use a simple PHP code.
  • [/Normal_Box]

    Step 1: Create a php file

    Creating a PHP file can be done many different ways. (Beginner examples: Use Microsoft Notepad and paste the code below, then save your extension as PHP. Or change an existent PHP file and paste the code below. )

    Copy and paste Name the file page-random.php and paste in the code below:[Normal_Box]

    // set arguments for get_posts()
     $args = array(
     'numberposts' => 1,
     'orderby' => 'rand'
     );
    // get a random post from the database
     $my_random_post = get_posts ( $args );
    // process the database request through a foreach loop
     foreach ( $my_random_post as $post ) {
     // redirect the user to the random post
     wp_redirect ( get_permalink ( $post->ID ), 307 );
     exit;
     }

    [/Normal_Box]

    Step 2: Upload page-random.php into your theme’s directory

    Your theme’s directory can be found in your FTP manager under wp-content>Themes>Your Theme.

    Step 3: Create a page titled “random” on WordPress

    Login to your WordPress dashboard, create a new page and title it random.

    Once you have created the random page in your WordPress interface users who visit http://yourwebsite.com/random will be directed to a random post.

    307 HTTP redirect codes

    Adapted into the code above is a 307 status code. Using 307 codes for redirecting users to random posts will allow search engine bots to understand this is just a temporary redirect, otherwise redirects are not considered SEO friendly.[/Normal_Box]
    [eps-product id=”2371100″]

    Sean Doyle

    Sean is a tech author and security researcher with more than 20 years of experience in cybersecurity, privacy, malware analysis, analytics, and online marketing. He focuses on clear reporting, deep technical investigation, and practical guidance that helps readers stay safe in a fast-moving digital landscape. His work continues to appear in respected publications, including articles written for Private Internet Access. Through Botcrawl and his ongoing cybersecurity coverage, Sean provides trusted insights on data breaches, malware threats, and online safety for individuals and businesses worldwide.

    Post navigation

    Leave a Reply

    This site uses Akismet to reduce spam. Learn how your comment data is processed.