# لیست تصادفی پست‌ها در وردپرس



<?php


$args = array( 'numberposts' => 7, 'posts_per_page' => 5, 'orderby' => 'rand' );


$rand_posts = get_posts( $args );


foreach( $rand_posts as $post ) : ?>
 <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>[/php]


بدیهی است که با تغییر مقدار روبروی عبارت numberposts می‌توانید تعداد عناوین داخل لیست را جابجا کنید‌.




