Advertisement
businessdad

WooCommerce - Move some countries at the top of country list

Mar 20th, 2016
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. /**
  2.  * Moves Canada and the US to the top of the list of countries available
  3.  * in WooCommerce.
  4.  *
  5.  * @author Aelia <support@aelia.co>
  6.  */
  7. add_filter('woocommerce_countries', function($countries) {
  8.   $countries = array(
  9.     'CA' => $countries['CA'],
  10.     'US' => $countries['US'],
  11.   ) + $countries;
  12.   return $countries;
  13. }, 10, 1);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement