Drupal:菜单链接标题中的字符实体
我有一个菜单链接,其链接标题包含字符实体(例如La Niña
)。然而,Drupal 无法识别字符实体,而是进一步对 & 符号进行编码,因此我最终得到了 La Niña
。我该如何解决这个问题?
I have a menu link whose link title contains a character entity (e.g. La Niña
). However, Drupal isn't recognising the character entity and is further encoding the ampersand, so I'm ending up with La Niña
. How do I fix that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以覆盖主题 template.php 文件或自定义模块中的可主题输出。
基本上,重点是 l() 函数不是使用 theme_menu_link 中的“html”选项调用的。
请参阅 http://api.drupal.org/api/drupal/includes--common.inc/function/l/7
和 http://api.drupal.org/api /drupal/includes--menu.inc/function/theme_menu_link/7
You can override themable output in your theme template.php file or in a custom module.
Basicaly, the point is that the l() function isn't called with the "html" option in theme_menu_link
See http://api.drupal.org/api/drupal/includes--common.inc/function/l/7
and http://api.drupal.org/api/drupal/includes--menu.inc/function/theme_menu_link/7