Суть дела. На странице открытого поста, внизу страницы вывел 3 последние записи из всех рубрик, выглядит это так...
<div class="last-three-post clearfix">
<?php
$args = array( 'numberposts' => 3 );
$lastposts = get_posts( $args );
foreach($lastposts as $post) : setup_postdata($post); ?>
<div class="blog-item col-sm-4">
<div class="blog-images">
<a href="<?php the_permalink() ?>">
<?php the_post_thumbnail( 'spec_thumb' ); ?>
</a>
</div>
<div class="blog-name-cat"><?php the_category(', '); ?></div>
<a class="blog-title" href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>" target="_blank"><?php the_title(); ?></a>
<span class="blog-date"><?php echo get_the_date('F j, Y'); ?></span>
</div>
<?php endforeach;
?>
</div>
Как скрыть вывод такого же поста , как и просматриваемого?
Что бы такой же пост не выводился в такую же статью, запись