• Hey, having a small issue i’m hoping someone can resolve quickly.

    I am feeding a particular page ID to my home page. Well this particular page has a plug in tag on it. But with the code i’m using to feed the page it’s only feeding the title and not the most important part, the plugin. When I access the page directly I see the plug in no problem. Can you help me? This is the code i’m using to feed the page ID.

    <?php
    query_posts(‘page_id=33’); //retrieves page 7 only
    ?>
    <?php while (have_posts()): the_post(); ?>

    <?php endwhile; ?>
    <?php while (have_posts()): the_post(); ?>
    <h2><?php the_title(); ?></h2>
    <?php the_excerpt(); ?>
    <p>“>Read more…</p>
    <?php endwhile; ?>

  • The topic ‘Feeding a page with a plug tag’ is closed to new replies.