- <?php
- $postidnum = $wp_query->post->ID;
- $args = array(
- 'post_type' => 'contacts',
- 'showposts' =>'-1',
- 'meta_key' => 'last_name',
- 'orderby' => 'meta_value',
- 'order' => 'ASC',
- 'meta_query' => array(
- array(
- 'key' => 'department_commitee',
- 'value' => $postidnum
- )
- )
- );
- $contacts = new WP_Query( $args );
- while ( $contacts->have_posts() ) :
- $contacts->the_post();
- ?>