Advertisement
Guest User

Untitled

a guest
Mar 16th, 2020
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.79 KB | None | 0 0
  1. add_shortcode('countriesDropdown', 'countriesDropdown_shortcode');
  2.   function countriesDropdown_shortcode( $atts = [], $content = null) {
  3.     ?>
  4.     <div>
  5.       <form action="#" method="post">
  6.           <select name="countrySel" id="_countryDropdown" onchange="this.form.submit()">
  7.             <option value="" selected disabled hidden>Select Country</option>
  8.              <?php
  9.              Global $countries2;
  10.              $listOfCountries = array_keys($countries2);
  11.              sort($listOfCountries);
  12.              foreach( $listOfCountries as $country ) { ?>
  13.                <option value="<?php echo $country; ?>"><?php echo $country; ?></option>
  14.              <?php
  15.              }
  16.              ?>
  17.            </select>
  18.         </form>
  19.      </div>
  20.        <?php
  21.  
  22.      return '';
  23.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement