Skip to content

Instantly share code, notes, and snippets.

@michaelbeil
Forked from ronalfy/pmpro-bulgarian-currency.php
Last active August 17, 2022 18:19
Show Gist options
  • Save michaelbeil/0c8646889bc3d5cbb2abef7118059da3 to your computer and use it in GitHub Desktop.
Save michaelbeil/0c8646889bc3d5cbb2abef7118059da3 to your computer and use it in GitHub Desktop.
Paid Memberships Pro - Bulgarian Currency
<?php
// Adds the BGN currency to currency list.
function pmpro_currencies_bulgarian( $currencies ) {
$currencies['BGN'] = __( 'Bulgarian Lev', 'pmpro' );
return $currencies;
}
add_filter( 'pmpro_currencies', 'pmpro_currencies_bulgarian' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment