CSS
- 18 ответов
- 0 вопросов
7
Вклад в тег
<?php
$posthide = get_the_ID();
$args = array(
'orderby' => 'rand',
'showposts' => 10,
'cat' => array(-4,-7),
'post__not_in' => array( $posthide, 12, 16)
);
$news = new WP_query(); $news->query($args);
while ($news->have_posts()) : $news->the_post();
?>
<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php endwhile; ?>