<?php if(!post_type_exists('lt_faq'))return;$items=get_posts(array('post_type'=>'lt_faq','post_status'=>'publish','posts_per_page'=>6,'orderby'=>'menu_order title','order'=>'ASC'));if(!$items)return; ?><section class="lt-section lt-section--surface" style="<?php echo esc_attr( lt_theme_home_section_style('faq') ); ?>"><div class="lt-container" data-reveal><div class="lt-kicker"><?php esc_html_e('Questions','law-temple-theme'); ?></div><h2><?php esc_html_e('Frequently asked questions','law-temple-theme'); ?></h2><div class="lt-accordion"><?php foreach($items as $i=>$p):$id='faq-'.$p->ID; ?><div class="lt-accordion-item"><button class="lt-accordion-button" data-accordion-button aria-expanded="false" aria-controls="<?php echo esc_attr($id); ?>"><?php echo esc_html($p->post_title); ?><span aria-hidden="true">+</span></button><div class="lt-accordion-panel" id="<?php echo esc_attr($id); ?>" hidden><?php echo wp_kses_post(apply_filters('the_content',$p->post_content)); ?></div></div><?php endforeach; ?></div></div></section>
