• im using the static page plugin, but i also want to add some posts (that are on the ‘index’ category, which doesn’t appear on the blog) on that page, is there a way to make it possible?

    thx.

    // EDIT

    nevermind.
    if anyone is interested on how to do this:

    <?php
    $posts = get_posts(‘numberposts=10&order=ASC&orderby=post_title&category=1’);
    foreach ($posts as $post) : start_wp(); ?>
    <?php the_date(); echo “
    “; ?>
    <?php the_title(); ?>
    <?php the_excerpt(); ?>
    <?php endforeach; ?>

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘posts in static page’ is closed to new replies.