How can I list all post from a taxonomy like example i have "studios"
Example :
Studios:
-list property
-list property
-list property
-list property
/**
* Custom taxonomies
*/
function aviators_properties_create_taxonomies() {
$property_types_labels = array(
'name' => __( 'Property Types', 'aviators' ),
'singular_name' => __( 'Property Type', 'aviators' ),
'search_items' => __( 'Search Property Types', 'aviators' ),
'all_items' => __( 'All Property Types', 'aviators' ),
'parent_item' => __( 'Parent Property Type', 'aviators' ),
'parent_item_colon' => __( 'Parent Property Type:', 'aviators' ),
'edit_item' => __( 'Edit Property Type', 'aviators' ),
'update_item' => __( 'Update Property Type', 'aviators' ),
'add_new_item' => __( 'Add New Property Type', 'aviators' ),
'new_item_name' => __( 'New Property Type', 'aviators' ),
'menu_name' => __( 'Property Type', 'aviators' ),
);
register_taxonomy( 'property_types', 'property', array(
'labels' => $property_types_labels,
'hierarchical' => true,
'query_var' => 'property_type',
'rewrite' => array( 'slug' => __( 'property-type', 'aviators' ) ),
'public' => true,
'show_ui' => true,
) );
}
add_action( 'init', 'aviators_properties_create_taxonomies', 0 );
Use tax query (http://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parameters)