• Resolved bitsyandkitty

    (@bitsyandkitty)


    Hi,

    I have manipulated a theme to produce a slightly different homepage, it involves using two loops.
    the homepage uses this code to render the featured posts;

    [Code moderated as per the Forum Rules. Please use the pastebin]

    that all works fine – then this loop is picked up

    [Code moderated as per the Forum Rules. Please use the pastebin]

    which also seems to work fine however the output includes entire posts rather than just excerpts like this, extraneous copy in bold;

    [Code moderated as per the Forum Rules. Please use the pastebin]

    [Code moderated as per the Forum Rules. Please use the pastebin]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter bitsyandkitty

    (@bitsyandkitty)

    Any ideas on how i can get rid of the actual post appearing on the homepage under featured – as far as i can tell it should just be the excerpt….
    ???

    Thread Starter bitsyandkitty

    (@bitsyandkitty)

    Found it!
    tucked in header under if is_home

    <?php
    query_posts(‘cat=4’);
    while (have_posts()) : the_post();
    the_content();
    endwhile;
    ?>

    removed.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Post listing – can't find where called from’ is closed to new replies.