Ниже приведенный код вставляется или в single.php или в loop-single.php или content-single.php, в зависимости от вашей темы.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
<h4 class="sample-post-title">Читайте также:</h4> <div class="sample-posts"> <?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' => '6', 'orderby' => 'rand', 'ignore_sticky_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() ?>" title="<?php the_title_attribute(); ?>"><?php echo get_the_post_thumbnail(); ?> <span><?php the_title(); ?></span></a></li> <?php } echo '</ul>'; } wp_reset_query(); } ?> </div> |