Öncelikle
<?php echo category_description(); ?>
Yazan yeri aşağıdaki ile değiştir:
<?php the_archive_description(); ?>
Sonra aşağıdaki kodu functions.php ye ekle.
function archive_aciklama_degistir( $description ) {
    $yillar = '2011';
    return str_replace( '%%seneler%%', $yillar, $description );
}

add_filter( 'get_the_archive_description', 'archive_aciklama_degistir' );