Type of information that is represented in a language and can be selected in widgets or shortcodes.
Parameters
- text – empty string by default
- element – type of information that is represented in a language. String with type key
- 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' );
?>