latest post excluding a specific category
-
hi
hope you can help me. this is the code to show the LATEST post (using all categories and all the posts).i want the latest post, BUT excluding posts from a specific category (ie ID=3).
please help me change the code:
________________________
<h3 class=”sec-title”>Latest Article</h3>
<div class=”post” id=”post-<?php the_ID(); ?>”><?php
$posts = get_posts(‘numberposts=1’);
foreach($posts as $post) :
setup_postdata($post);
?>
<h2 class=”post-title”>” title=”Permanent link to <?php the_title(); ?>”><?php the_title(); ?></h2>
<p class=”post-meta”><?php the_time(‘F jS, Y’) ?> / <?php the_category(‘, ‘) ?> / <?php comments_popup_link(‘No comments’, ‘1 comment’, ‘% comments’,’Comments are off for this post’); ?>
<div class=”post-body”>
<?php the_excerpt(); ?>
<p class=”more”>” title=”Permanent link to <?php the_title(); ?>”>Continue reading
</div>
</div>
<?php endforeach; ?>
_________________thnx
enrico
- The topic ‘latest post excluding a specific category’ is closed to new replies.