Code
function add_anchor_catlink($cat_link = '', $cat_id = 0) {
[COLOR="Red"]if ( $cat_id == 123 ) {[/COLOR]
return $cat_link . '#content';
} else {
return $cat_link;
}
}
add_filter('category_link', 'add_anchor_catlink');
"123" wäre natürlich deine Kategorie-ID. Schau mal ob das klappt, habs jetzt nicht getestet.