• I want to make a article-like wordpress page, like i found it here: xxlmag.com

    The construction:
    http://img526.imageshack.us/img526/9717/68318763.png

    I need an Post-Image which is on the leftmost and a short Post-Description.
    This Post-Image and Description occurs only at the Categorie (see picture). When clicking on a post a new page (without the Post-Image + Description!) should show up.

    How can I do that conceptual?
    Thanks for helping!

Viewing 2 replies - 1 through 2 (of 2 total)
  • try http://wordpress.org/extend/plugins/post-avatar/
    for the image, then edit the structure of your loop for the position of the number of comments, the author, date, etc.

    for the short description, use excerpt http://codex.wordpress.org/Excerpt

    Thread Starter check12

    (@check12)

    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?
    } ?>
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Image- and Description-Post’ is closed to new replies.