Internet_Contraband
Гуру форума
- Регистрация
- 19 Окт 2007
- Сообщения
- 245
- Реакции
- 69
- Автор темы
- #1
У меня есть тема, выводом последних сообщений на главной странице:
А мне нужно выводить случайные
не могу понять,Что мне надо изменить
Код:
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("paged=$paged&showposts=".get_option('woo_recent_posts')."&cat=-".$featcat); ?>
<?php if (have_posts()) : $count = 0; ?>
<?php while (have_posts()) : the_post(); ?>
<?php if (in_array($post->ID,$GLOBALS['exclude'])) continue; ?>
<div class="box2 <?php if ($count == 1) { echo 'last'; $count = 0; } else $count++; ?>">
<div class="box2-top"></div>
<div class="post">
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
<?php woo_get_image('image','180','120'); ?>
<div class="info">
<?php if(function_exists('the_ratings')) { echo '<div class="fl ratings">'; the_ratings(); echo '</div>'; } ?>
<div class="comment fr"><a href="<?php comments_link(); ?>">
<?php comments_number('0','1','%'); ?></a>
</div>
</div>
<p><?php the_content_rss('', TRUE, '', 12); ?></p>
</div>
<div class="box2-bot"></div>
</div>
<?php endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
А мне нужно выводить случайные
не могу понять,Что мне надо изменить