Skip to content

Instantly share code, notes, and snippets.

@sibelius
Created June 8, 2021 01:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sibelius/2ef1113f18be041f6b986a77ff81b934 to your computer and use it in GitHub Desktop.
Save sibelius/2ef1113f18be041f6b986a77ff81b934 to your computer and use it in GitHub Desktop.
save get amount in cents
public function get_amount($total)
{
return absint(
wc_format_decimal((float) $total * 100, wc_get_price_decimals())
); // In cents.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment