hello
how to call random posts in index
tnx
hello
how to call random posts in index
tnx
doesnt matter found it ...
tnx any way
<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args= array(
'orderby' => 'rand',
'paged' => $paged
);
query_posts($args);
?>
This topic has been closed to new replies.