Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 59525

Adding New Category

$
0
0

Replies: 0

i am adding following code at the end of theme function but i cant see any currency added in pricing.
add_filter(‘adverts_currency_list’, ‘add_adverts_currency’);
function add_adverts_currency($list) {

$list[] = array(
“code”=>”NGN”, // ISO 4217 currency code, see
“sign”=>”₦”, // currency prefix or postfix
“label”=>”Nigerian Naira” // currency long name
);
return $list;
}


Viewing all articles
Browse latest Browse all 59525

Trending Articles