How can I modify my query in order to exclude certain posts by slug? Is it possible?
query_posts(array('category_name' => 'Mycat', 'posts_per_page' => -1));
Ty
|
How can I modify my query in order to exclude certain posts by slug? Is it possible?
Ty |
||||
|
|
|
You can get the post ID from the slug with the
then just exclude the ID from your query:
You can create an array of post IDs if you need to exclude multiple pages. |
|||||
|
|
Do not use
* No, really: don't use |
|||
|
|