San Francisco’s ADU Ordinance
Accessory dwelling units (ADUs) have the potential to provide a rare and valuable source of rental housing in San Francisco’s single-family neighborhoods. The current San Francisco rules, however, make it […]
Categories
New Documents
if (is_tax()) {
$docs = new WP_Query(array('post_type' => 'document', 'tax_query' => array(array('taxonomy' => 'library_tag', 'terms' => array(get_queried_object_id())))));
} else {
$docs = new WP_Query(array('post_type' => 'document'));
}
while ($docs->have_posts()) {
$docs->the_post();
get_template_part('partials/document_card');
}
wp_reset_postdata();
?>