File "sidebar.php"

Full Path: /home/concvitk/public_html/wp-content/themes/conceptualizate/sidebar.php
File size: 1005 B
MIME-type: text/plain
Charset: utf-8

<aside>
    <?php
        $work_areas = get_field('work_areas');
        $industry_areas = get_field('industry_areas');
        $star_date = get_field('projects_star_date');
        $end_date = get_field('projects_end_date');
    ?>
    <ul>
        <?php if( !empty($work_areas) ) {
            echo '<h3>Work Areas</h3>';
            foreach($work_areas as $area) {
                echo '<li>' . esc_html($area) . '</li>';
            }
        } ?>
    </ul> <!-- Work Areas -->

    <ul>
        <?php if( !empty($industry_areas) ) {
            echo '<h3>Industry</h3>';
            foreach($industry_areas as $area) {
                echo '<li>' . esc_html($area) . '</li>';
            }
        } ?>
    </ul> <!-- Industry Areas -->

    <ul>
        <?php if( $star_date && $end_date ) {
            echo '<h3>Project Date</h3>';
            echo '<li>' . esc_html($star_date) . ' - ' . esc_html($end_date) . '</li>';
        } ?>
    </ul> <!-- Dates -->
</aside>