Advertisement
borkolivic

WPAdverts Snippets - Add RSD

Jan 13th, 2019
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.59 KB | None | 0 0
  1. // The code below you can paste in your theme functions.php or create
  2. // new plugin and paste the code there.
  3. add_filter("adverts_currency_list", "add_adverts_currency");
  4. /**
  5.  * Add new currency to the list
  6.  *
  7.  * @var $list Array list of currencies
  8.  * @return Array updated list of currencies
  9.  */
  10. function add_adverts_currency($list) {
  11.    
  12.     $list[] = array(
  13.         "code"=>"RSD", // ISO 4217 currency code, see http://en.wikipedia.org/wiki/ISO_4217
  14.         "sign"=>"Din", // ili RSD, po želji
  15.         "label"=>"Serbian dinar" // currency long name
  16.     );
  17.    
  18.     return $list;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement