如何插入 内的标签 Drupal7 主菜单上的标签
我试图通过将标记之间的文本包装在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我问了同样的问题此处 在 drupal.stackexchange.com 上,如果您有兴趣,我们会收到很好的答案。
I asked the same question here on drupal.stackexchange.com and received good answers, if you are interested.