Из основной категории вывести нет проблем, а как подтянуть подкатегори к выводу?
function randomPosts(){?>
<ul>
<?php query_posts('category_name=entreprises$orderby=rand&showposts=5'); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<li>
<a href="<?php the_permalink(); ?>">
<span class="widget-img-holder widget-img-holder-border widget-img-holder-thumb"><?php the_post_thumbnail('large') ?></span>
<div>
<div class="widget-item-title"><?php the_title(); ?></div>
<div class="widget-item-text">
<?php the_excerpt()?>
</div>
</div>
</a>
</li>
<?php endwhile; endif; ?>
</ul>
<?php
wp_reset_query();
}