Skip to content

Instantly share code, notes, and snippets.

@ronalfy
Created June 29, 2020 17:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save ronalfy/19cfcd0839f4cd1ca3596228dfb352aa to your computer and use it in GitHub Desktop.
Save ronalfy/19cfcd0839f4cd1ca3596228dfb352aa 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', '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