Привет, сделал плагин, надо чтобы похожие посты зафиксировались там на вечно, то есть чтобы они не обновлялись ни когда даже при удалении кэша.
Как такое сделать кто знает? вот мой код
<?php
$categories = get_the_category(get_the_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(get_the_ID()),
'showposts' => '5',
'orderby' => 'rand',
'ignore_sticky_posts' => '1',
'no_found_rows' => true,
'cache_results' => true
);
$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() ?>"><?php the_title(); ?></a></li>
<?php
}
echo '</ul>';
}
wp_reset_query();
}
?>