Quote:
Originally Posted by tonyparra
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; ?>