Bir kategoriye ait son yazıları listelemek için aşağıdaki kodu kullanabilirsin.


    global $post;
    $args = array( 'numberposts' => 5, 'offset'=> 1, 'category' => 1 );
    $myposts = get_posts( $args );
    foreach( $myposts as $post ) : setup_postdata($post); ?>




category=1 (kategori id'si)
numberposts=5 (son x konu)

Detay: http://codex.wordpress.org/Template_Tags/get_posts#Posts_list_with_offset