Как вывести все рубрики, кроме одной, с id - 13?
<?php
global $post;
$postslist = get_posts( array( 'posts_per_page' => -1, 'category'=>'3' ) );
foreach ( $postslist as $post ){
setup_postdata($post);
?>
<div class="item" style="background:url(<?php echo get_the_post_thumbnail_url( $post, $size ); ?>);background-size:cover;background-repeat:no-repeat;background-position:center;">
<div class="date">
<?php the_date(); ?>
</div>
<div class="desc">
<div class="cat">
<p></p>
</div>
<div class="title">
<?php the_title(); ?>
</div>
<div class="author">
<?php the_author(); ?>
</div>
</div>
</div>
<?php
}
wp_reset_postdata(); ?>