Hi, i'm trying to show random post in single.php behind the content using this function :
<? $quantipost = '10'; // totale dei post da mostrare ?>
<h2> <?=$quantipost; ?> Post a caso</h2>
<ul>
<?php
$rand_posts = get_posts('numberposts=$quantipost&orderby=rand');
foreach( $rand_posts as $post ) :
?>
<li><a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a></li>
<?php endforeach; ?>
</ul>
this function works but conflict with comments... comments that are showed are not from post but random...
how can i solve this? thanks in advance.