It may be easiest to show you what I need.
http://oneroyalway.com/baseball-blog-directory/american-league-central/detroit-tigers-blogs
If your reload this page a few times, you will see that it loads a random page.
I currently have this set up with php code that replaces the loop, and instead loads a html page randomly.
<?php
$mypages = array("tigers1.htm", "tigers2.htm", "tigers3.htm");
$myrandompage = $mypages[mt_rand(0, count($mypages) -1)];
include ($myrandompage);
?>
I want to be able to load a random WordPress post based on a set of post numbers.
Thanks in advance for your help!