// assign the variable as current category
$categoryvariable = $catid;
$args=array(
'cat' => $categoryvariable,
'post_type' => 'album',
'orderby' => 'date',
'order' => 'DESC',
'posts_per_page' => -1
);
query_posts( $args );
?>
belirttiğim kategoride album yazı tipinde son yazıyı çekmek istiyorum fakat ilk yazı geliyor. Sorunu nasıl çözebilirim?