%PDF- %PDF-
Direktori : /var/www/pn/beta/64801_wp-content/themes/intosai/templates/sections/ |
Current File : /var/www/pn/beta/64801_wp-content/themes/intosai/templates/sections/country_dropdown.php |
<section class="country_dropdown"> <div class="wrapper"> <div class="text"> <h2>Country selector</h2> </div> <?php $wdi = get_terms(array( 'taxonomy' => 'wdi', 'hide_empty' => false, )); ?> <div class="selectContainer"> <div class="select_holder"> <select class="dropdown" name=""> <option value="" style="display:none;">-Välj ett land-</option> <?php foreach ($wdi as $region) { $regID = $region->term_id; $regNamn = $region->name; $classification = get_field('economic_classification', 'wdi_'.$regID); if($classification != 'High Income Countries') { echo "<option value='{$regNamn}'>{$regNamn}</option>"; } } ?> </select> <?php ?> </div> </div> </div> </section>