WordPress 中的希伯来语问题
我想将我的 WordPress 主题中的 SearchForm.php 文件更改为希伯来语。 我的意思是我想看到“חפש”(希伯来语文本)而不是“搜索”。
当我改变它时,我看到了垃圾。
为什么 ??
谢谢。
i want to change the SearchForm.php file in my wordpress themes to hebrew.
i mean i want to see 'חפש' (hebrew text) instead of 'search for '.
when i change it i see gebrish.
why ??
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要确保页面的内容类型正确 - 通常 UTF-8 适用于所有语言。
您可以在
head
元素中使用元标记:对于希伯来语,它是 iso-8859-8。
这通常已经在模板中设置,您可以查看您的设置以查看其是否正确 - 在“设置”->“设置”中阅读,在“页面和提要编码”下。
您还需要确保页面保存为 UTF-8 而不是 ascii - 检查您的文本编辑器设置。
You need to make sure that the content-type of the page is the correct one - normally UTF-8 would work for all languages.
You can use a meta tag within the
head
element:For Hebrew it is iso-8859-8.
This is normally already setup within the template and you can look at your settings to see if it is correct - In Settings -> Reading, under "Encoding for pages and feeds".
You also need to be sure that the page is saved as UTF-8 and not ascii - check your text editor settings.