'answer',
'post_status' => 'publish',
'post_parent' => get_question_id(),
'showposts' => -1
);
$ans = new WP_Query($ans_args);
while ( $ans->have_posts() ) : $ans->the_post();
include(ap_get_theme_location('answer.php'));
endwhile ;
wp_reset_query();
?>