Código PHP:
<div id="list"><?php
$random_limit = 24;
if ( $randompost = $wpdb->get_results("SELECT ID, post_title FROM $wpdb->posts WHERE post_status = 'publish' AND post_type = 'post' ORDER BY rand() DESC LIMIT $random_limit")):
?>
<ul>
<?php foreach ($randompost as $post) { if ($post->post_title == '') $post->post_title = sprintf(__('Post #%s'), $post->ID);
echo "<li> <a href='".get_permalink($post->ID)."'>"; the_title(); echo "</a></li>\n"; }
?>
</ul>
<br />
<?php endif; ?></div>
el cual lo que hace es coger todos los post y enviarlos de forma aleatoria, lo que quiero realizar es la misma funcion de random pero solo con ciertas categorias