merhaba,
elinize sağlık @Prostavaryo hocam yeni sürümde de
WP Fastest Cache - 0.6.7 - Cache Timeout Özelliği Eklendi konusunda bahsettiğim rastgele benzer yazı sorunu devam ediyor
acaba bizim kullandığımız kodda bir sorun mu var sizde bu kodlar ile sistemi test edebilirseniz sevinirim
<?php
$original_post = $post;
$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' => 3,
'order' => 'ASC',
'orderby' => 'rand'
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>