Post order

<?php
$args = array(
‘post_type’ => ‘kyoto_courses’,
‘taxonomy’ => ‘courses_kyoto’,
‘term’ => ‘kobe-standard-tours’,
‘orderby’=>’title’,
‘order’=> ‘ASC’    ); ?>
<!–<?php query_posts( $args ); ?>–>
<?php get_posts( $args ); ?>
————————————————-

Note that default is:  ‘order’=> ‘DSC

( Also default: ‘orderby’=>’date”)