I'm looking for a way to query posts by id, and using a string as a parameter, instead of an array. Like this:
query_posts('p=153');
But I need to get multiple posts. For example with ID 153 and 154. How would I do that with a string as a parameter?
The reason that I'm using a string is because I'm generating that string with javascript and if I would do it otherwise it will get super complicated.
Any ideas?