ID);
if ($categories) {
$category_ids = array();
foreach($categories as $individual_category) $category_ids[] = $individual_category->term_id;
$args=array(
'category__in' => $category_ids,
'caller_get_posts'=>1,
'orderby'=>'date',
'order'=>'ASC'
);
$my_query = new wp_query($args);
if( $my_query->have_posts() ) {
echo '';
while ($my_query->have_posts()) {
$my_query->the_post();
?>
Şu şekilde denedin mi?
Edit: Eğer olmazsa orderby kısmını 'title' olarak değiştirip dene.
title iş gördü teşekkürler.