Adding Currency Code
-
Where do I add this in worpress?
// Add currency Emirati Dirham Rate “JOD”
function my_extra_epl_currencies( $currencies ) {
$currencies[‘JOD’] = __(‘Emirati Dirham Rate’, ‘my_domain’);
return $currencies;
}
add_filter(‘epl_get_currencies’, ‘my_extra_epl_currencies’);
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Adding Currency Code’ is closed to new replies.