Thank you very much.
At the Categorie-Page and Post-Page the excerpt + the_content text are displayed together (twice; I mean on both pages).
Now I need to remove the_content text at the Categorie-Page.
And at the Post-Page I have to remove the Excerpt while showing now the_content .
How can I do that?
Is there a Tag for each of these commands?
It would be great if I have a tag for the avatar_image, the excerpt, the_content text and the postlink.
p.s.
the avatar is also shown at the Post-Page, how can I remove it there?
ok with the following code it worx, but the avatar is still shown at the Post-Page. That's why its built within the_content() tag. I have to figure out how to remove it there.
<?php if ( is_category() ) {
if (function_exists('gkl_postavatar')) gkl_postavatar(); // get the avatar. Without this code it would not be shown, because its built in the_content.
the_excerpt();
} else {
the_content();
// here I have to remove the avatar. how?
} ?>