I'm currently running this query to get pages (not posts) from the site section:
query_posts("post_type=page&post_parent=6");
I'd like to remove one page, 271, from this query. Based on this stack I tried:
query_posts("p=-271&post_type=page&post_parent=6");
Unfortunately this had the opposite of the intended result, showing only page 271 and not the other pages in the loop. Placing the p=-271 at the end of the query had the same unsuccessful result.
How can I reverse this to show all the other pages except page 271?