Not working using category_name or category with ID. Example:
<?php
$args = array(
'post_type' => 'team',
'category_name' => 'Executive',
'numberposts' => -1,
'post_status' => null,
'post_parent' => $post->ID
);
$members = get_posts($args);
foreach($members as $post) :
setup_postdata($post);
?>Thanks, -Ross _______________________________________________ wp-testers mailing list [email protected] http://lists.automattic.com/mailman/listinfo/wp-testers
