<?php
$info = get_the_category()[0]->cat_ID;
query_posts('cat='.$info.'&showposts=4');
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="card col-6 text-center"><div class="text-center"><?php the_post_thumbnail('thumbnail');?></div><div class="card-body"><a class="permlinccat" href="<?php the_permalink() ?>" title="Перейти к посту: <?php the_title(); ?>" ><div class="card-title h5"><?php the_title(); ?></div></a></div></div>
<?php endwhile; else: ?>
Постов не найдено
<?php endif; wp_reset_query(); ?>
</div>
$info = get_the_category()[0]->cat_ID
$query = new WP_Query( array(
'post_type' => 'post',
'cat'=>$info,
'post__not_in' =>get_the_ID(),
) );
if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post(); ?>
<div class="card col-6 text-center"><div class="text-center"><?php the_post_thumbnail('thumbnail');?></div><div class="card-body"><a class="permlinccat" href="<?php the_permalink() ?>" title="Перейти к посту: <?php the_title(); ?>" ><div class="card-title h5"><?php the_title(); ?></div></a></div></div>
<?php endwhile; else: ?>
Постов не найдено
<?php endif; wp_reset_query(); ?>
<div class="sample-posts">
<h3>Похожие статьи:</h3>
<?php
$categories = get_the_category($post->ID);
if ($categories) {
$category_ids = array();
foreach($categories as $individual_category) $category_ids[] = $individual_category->term_id;
$args=array(
'category__in' => $category_ids,
'post__not_in' => array($post->ID), //Не выводить текущую запись
'showposts'=>5, // Указываем сколько похожих записей выводить
'caller_get_posts'=>1
);
$my_query = new wp_query($args);
if( $my_query->have_posts() ) {
echo '<ul>';
while ($my_query->have_posts()) {
$my_query->the_post();
?>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>
<?php
}
echo '</ul>';
}
wp_reset_query();
}
?></div>