• Hello,

    i use this code for display the last post, and exclude the category with the id “8”:

    <?php
          global $post;
          $myposts = get_posts('numberposts=1&cat=-8');
          foreach($myposts as $post) :
          setup_postdata($post);
          ?>

    but the posts of the 8’s category are always displays..

    bye

The topic ‘exclude a category’ is closed to new replies.