如何插入 内的标签 Drupal7 主菜单上的标签

发布于 2024-10-28 13:07:47 字数 501 浏览 1 评论 0原文

我试图通过将标记之间的文本包装在 a 中然后对其进行样式设置来使标记之间的文本不显示。

我已将以下函数添加到 template.php 文件中,但我在前端看不到任何差异。跨度就没有出现。 (我已清除缓存)

我使用的功能正确吗?我做错了什么?

    function my_theme_link($variables) {
  return '<a href="' . check_plain(url($variables['path'], $variables['options'])) . '"' . drupal_attributes($variables['options']['attributes']) . '><span>' . ($variables['options']['html'] ? $variables['text'] : check_plain($variables['text'])) . '</span></a>';
} 

I'm trying to make the text between my tag not display by wrapping it in a and then styling that.

I've added the following function to my template.php file, but I cannot see any difference on the front end. The span just does not appear. (I have cleared my cache)

Am I using the right function? What am I doing wrong?

    function my_theme_link($variables) {
  return '<a href="' . check_plain(url($variables['path'], $variables['options'])) . '"' . drupal_attributes($variables['options']['attributes']) . '><span>' . ($variables['options']['html'] ? $variables['text'] : check_plain($variables['text'])) . '</span></a>';
} 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

囚我心虐我身 2024-11-04 13:07:47

我问了同样的问题此处 在 drupal.stackexchange.com 上,如果您有兴趣,我们会收到很好的答案。

I asked the same question here on drupal.stackexchange.com and received good answers, if you are interested.

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