View Single Post
Old 11-05-2011, 07:39 AM  
bpluva
Confirmed User
 
Industry Role:
Join Date: Apr 2011
Posts: 235
Quote:
Originally Posted by tonyparra View Post
this one displays what i want but the permalink is all the same!! i fucking hate you right now wordpress
Try the code Below after while have_post the_post

<?php
global $wpdb;
$numposts = 32;
$rand_posts = $wpdb->get_results("SELECT * FROM $wpdb->posts WHERE post_status = 'publish' ORDER BY RAND() LIMIT $numposts");
foreach($rand_posts as $post) :
setup_postdata($post);
?>
<?php endforeach; ?>
bpluva is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote