[exec]
global $wpdb;
$sql = “SELECT ID FROM `wp_posts` WHERE post_status = ‘publish’ “;
$sql .= “AND post_type ‘page’ “;
$sql .= “ORDER BY RAND() LIMIT 1”;
$randposts = $wpdb->get_results($sql);
foreach ($randposts as $randpost) {
$permalink = get_permalink($randpost->ID);
header(“Location: $permalink”);
exit;
}
[/exec]
Advertisements