Skip to content

Instantly share code, notes, and snippets.

@stefanmm
Created June 6, 2022 15:08
Show Gist options
  • Save stefanmm/4a2765b79b70a4731771161692c18348 to your computer and use it in GitHub Desktop.
Save stefanmm/4a2765b79b70a4731771161692c18348 to your computer and use it in GitHub Desktop.
Get list of Woo countries using Woo API
<?php
// Ref: https://woocommerce.github.io/code-reference/classes/WC-Countries.html#method___get
global $woocommerce;
$countries = new WC_Countries();
$countries = $countries->__get('countries'); // obj
// echo "<pre>".var_export($countries,true)."</pre>";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment