Merhaba ; WordPress tema dosyalarınıza kod eklemenizi gerektirir. Yapmanız gereken ilk şey bu kodu temanızın functions.php dosyasına eklemek
function papatyamsoft_rand_posts() {
 
$args = array(
    'post_type' => 'post',
    'orderby'   => 'rand',
    'posts_per_page' => 5,
    );
 
$the_query = new WP_Query( $args );
 
if ( $the_query->have_posts() ) {
 
$string .= '<ul>';
    while ( $the_query->have_posts() ) {
        $the_query->the_post();
        $string .= '<li><a href="'. get_permalink() .'">'. get_the_title() .'</a></li>';
    }
    $string .= '</ul>';
    wp_reset_postdata();
} else {
 
$string .= 'yazi bulunamadi';
}
 
return $string;
}
 
add_shortcode('papatyamsoft-random-posts','papatyamsoft_rand_posts');
add_filter('widget_text', 'do_shortcode');
Artık [papatyamsoft-random-posts] kısa kodunu kullanarak istediğiniz yerde rastgele yazıları gösterebilirsiniz.