Titlelar hep ayni cikiyor. Mesela bir konuya girince butun titlelar o konunun aciklamasini aliyor. Kullandigim kodlar bunlar. Bunlardami sorun var sizce ?
<?php
$this_post = $post;
$category = get_the_category(); $category = $category[0]; $category = $category->cat_ID;
$posts = get_posts('numberposts=250&offset=0&orderby=post_d ate&order=DESC&category='.$category);
$count = 0;
foreach ( $posts as $post ) {
if ( $post->ID == $this_post->ID || $count == 5) {
unset($posts[$count]);
}else{
$count ++;
}
}
?>
<?php
foreach ( $posts as $post ) :
?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php post_limit('100'); ?>"><?php the_title(); ?></a>
<?php endforeach // $posts as $post ?>