Hi,
I couldn't find how to use query posts to retrieve certain posts by ID.
This only show last post which isn't ID 1 nor 2 nor 3:
query_posts('p=1,2,3');
This retrieve last 3 posts, which aren't 1 nor 2 nor 3:
query_posts('p=(1,2,3)');
I appreciate any kind of help.
thanks.