Denesene bunu, öyle denemeden yazdım.

<?php
$categories = get_categories( array(
'orderby' => 'name',
'order' => 'ASC'
) );

$random = rand(0, count($categories));

$link = get_category_link( $categories[$random]->term_id );

?>
setTimeout(function(){
     window.location = "<?php echo $link; ?>";
    }, 2000);