Forums

[resolved] How to get post ID? (3 posts)

  1. ardyonline
    Member
    Posted 2 months ago #

    How to get all post ID in a certain category? and put the result in a array variable?

    $var = array(1,6,11);

    where 1, 6, 11 are the postID of specific category.

  2. MichaelH
    moderator
    Posted 2 months ago #

    Something like:

    <?php
    $cat = 47; //category id
    $posts=get_posts('showposts=-1&cat='. $cat);
    if ($posts) {
    foreach($posts as $post) {
    echo "<pre>"; print_r($post->ID); echo "</pre>";
    }
    }
    ?>
  3. ardyonline
    Member
    Posted 2 months ago #

    thanks MichaelH!
    it enlightens me, it really helps!

Reply

You must log in to post.

About this Topic