• Resolved vinuel

    (@vinuel)


    Hi there,
    I’ve searched the forum but I couldn’t find a solution for this:
    On my front page I want a list of my latest posts and it shall be shown as excerpt ( the_excerpt(); ). Only the first article shall be shown in whole ( the_content(); ). Isn’t there an easy if/else-way to realize this?
    I’ve found something like this:

    if (is_post()) {
    global $more;
    $more = 1;
    the_content();
    } else the_excerpt();

    but it just show me one article as excerpt.

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘All posts excerpt except the first’ is closed to new replies.