<?php
add_action('the_content', 'add_similiar_posts');
function add_similiar_posts($tags)
{
global $post, $tags, $rand;
$output = '<div class="poxojie_zapisi">
<h3>Похожие записи:</h3>';
$tags = wp_get_post_tags($post->ID);
if ($tags) {
$tag_ids = array();
foreach($tags as $individual_tag) $tag_ids[] = $individual_tag->term_id;
$args=array(
'tag__in' => $tag_ids,
'orderby'=> $rand,
'caller_get_posts'=>1,
'post__not_in' => array($post->ID),
'showposts'=> 5
);
$my_query = new wp_query($args);
if( $my_query->have_posts() ) {
echo '<ul>';
while ($my_query->have_posts()) {
$my_query->the_post();
$out = '<li>'.'
<a href="'.the_permalink().'" rel="bookmark" title="'.
the_title().
'">'.
the_post_thumbnail();
the_title(); .
'</a></li>';
echo $out;
}
echo '</ul>';
}
wp_reset_query();
}
$output .= '</div>';
};
?>
<div class="golova1">Еще статьи по данной теме:</div>
<div class="r-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, // Выбор по категориям
'orderby'=>rand, // Случайный подбор постов
'caller_get_posts'=>1); // Запрещает повторение ссылок
'post__not_in' => array($post->ID),
'showposts'=>5, // Число, которое можно изменить, означает количество выводимых записей
$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>