Does the commentCount property accept number in other language?

I have a WordPress website and a plugin which converts all of English numbers to Persian ones. I can’t disable the plugin because it’s absolutely useful. And on the other hand, it’s not possible to convert Persian numbers to English because the plugin works in lower levels.

So commentCount will be <span itemprop="commentCount">Û¹</span> (where Û¹ equals 9).

Read More

What can I do? Does commentCount accept these numbers?

Related posts

1 comment

  1. you can place value in content property, like this

    <span itemprop="commentCount" content="9">Û¹</span>
    

Comments are closed.