Şunu bir incele: WP_Query

<?php 
$args = array(
    'posts_per_page' => 1, // gösterilecek yazı sayısı
    'orderby' => 'rand', // rastgele gelsin
    'category__in' => array( 2, 6 ) // yazı kategori id'leri
);
$sorgu = new WP_Query( $args ); ?>

<?php if ( $sorgu->have_posts() ) : ?>
  <?php while ( $sorgu->have_posts() ) : $sorgu->the_post(); ?>
    <a href="<?php the_permalink; ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
  <?php endwhile; ?>
  <?php wp_reset_postdata(); ?>
<?php else:  ?>
  <p>Gösterilecek yazı yok :(.</p>
<?php endif; ?>