<?php 
/* 
   Do not edit this file directly. 
   Generate it using ./scripts/make-taxonomy-templates.py. 
   --Xiaojun 
*/
do_action('apn2015_before_people_list', True);
echo apply_filters('shoestrap_title_section', '<header><title>' . shoestrap_title() . '</title><h1 class="entry-title">' . shoestrap_title() . '</h1></header>');
do_action('shoestrap_index_begin');
global $ss_framework;
//What to show on archive page
$args = array('post_type' => 'member', 'tax_query' => array(array('taxonomy' => 'country', 'field' => 'slug', 'terms' => 'cambodia')), 'order' => 'ASC', 'orderby' => 'name');
//How to sort the archive page
$terms = false;
apn2015_the_people_list_sorted($args, $terms);
do_action('shoestrap_index_end');
echo shoestrap_pagination_toggler();
<?php

$term_desc = term_description() ? ": " . strip_tags(term_description()) : "";
echo apply_filters('shoestrap_title_section', '<header><h1 class="entry-title">' . shoestrap_title() . $term_desc . '</h1></header>');
do_action('shoestrap_index_begin');
global $ss_framework;
//What to show on archive page
$args = array('post_type' => 'member', 'tax_query' => array(array('taxonomy' => 'organ', 'field' => 'slug', 'terms' => 'secretariat')), 'order' => 'ASC', 'orderby' => 'name');
//How to sort the archive page
$terms = get_terms('country', array('orderby' => 'name', 'hide_empty' => 1));
apn2015_the_people_list_sorted($args, false);
do_action('shoestrap_index_end');
echo shoestrap_pagination_toggler();