HireBee Local Currency Adding Problem
Hello, I want to add Azerbaijan Manat to my currency list but I can`t. I made this code to solve this problem.
APP_Currencies::register_currency()
add_action( 'init', 'myplugin_add_currency' );
function myplugin_add_currency(){
// Azerbaijan Manat (₼)
$args = array(
'name' => 'Azerbaijan Manat',
'symbol' => '₼'
);
// AZN.
APP_Currencies::add_currency( 'APP', $args );
}
I added this code to HireBee child theme "style" file and after that "functions" file but did not work. Please help me where is my wrong and where or how must I add that code? Thanks!