Smooth slider Number Format
-
Hi
I have recently started using this plugin. My problem is I want the numbers show up in navigation in Persian.
I mean instead of 123 … shows ۱ ۲ ۳ ۴.
How can I change that. I found a function that does this:
/* English to persian */
function convert($string) {
$persian = array(‘۰’, ‘۱’, ‘۲’, ‘۳’, ‘۴’, ‘۵’, ‘۶’, ‘۷’, ‘۸’, ‘۹’);
$num = range(0, 9);
return str_replace($num, $persian, $string);
}
// ends —But I do not know where to put this function.
Thanks in advance
The topic ‘Smooth slider Number Format’ is closed to new replies.