Dear Wordpress community!
How do I select all posts from the database exept the posts from one specific category.
I hope someone can help me ;-)
- Nikolaj
Dear Wordpress community!
How do I select all posts from the database exept the posts from one specific category.
I hope someone can help me ;-)
- Nikolaj
exclude category 3
$query_posts($query_string . '&cat=-3');
Also see the query_posts() article for more possibilities (e.g. category__not_in)
And don't forget the Advanced Category Excluder plugin:
http://wordpress.org/extend/plugins/advanced-category-excluder/
Hi,
Refer this article:
http://codex.wordpress.org/The_Loop#Exclude_Posts_From_Some_Category
Thanks,
Shane G.
Hey,
Thanks for your answers. :-)
I'm codeing a php file from scratch.. witch files do I include to access the functions? OR is there a SQL query I could send?
- Nikolaj
Might review Theme_Development
You must log in to post.