Select Page

Type of information that is represented in a language and can be selected in widgets or shortcodes.

Parameters

  1. text – empty string by default
  2. element – type of information that is represented in a language.  String with type key
  3. currency_code – currency code (Example: EUR, USD)

Usage

<?php
function change_br_currency_widget_do_type_of_text ( $text, $element, $currency_code ) {
//your code here
    return $text;
}

add_filter( 'br_currency_widget_do_type_of_text', 'change_br_currency_widget_do_type_of_text' );
?>