Drupal:菜单链接标题中的字符实体

发布于 2024-10-18 03:00:59 字数 154 浏览 1 评论 0原文

我有一个菜单链接,其链接标题包含字符实体(例如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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

罪歌 2024-10-25 03:00:59

您可以覆盖主题 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文