Hi There!
I want to list these two different custom post types on one page:
<?php query_posts(array('post_type' => array('post', 'custom-post -1'))); ?>
<?php query_posts(array('post_type' => array('post', 'custom-post-2'))); ?>
but I only get one listed (the upper one) - the other one does not show up.
Is there any way to shwow these two taxonomies at the same time?
Thank you!!
AD