在drupal中向body标签添加id属性
我正在尝试将 id 添加到 drupal 主题中的 标记中。目前我正在按以下方式执行此操作:
PHP
function myTheme_preprocess_html(&$variables) {
$variables['bodyId'] = $variables['is_front'] ? 'id="page-AnaSayfa"' : 'id="page"';
}
HTML:
<body class="<?php print $classes;?>" <?php print $attributes;?> <?php print $bodyId;?>>
我想知道是否有办法使用 $attributes
变量来执行此操作?到目前为止,我尝试过的方法都不起作用,这导致我使用我现在拥有的 $bodyId
。
感谢您的帮助。
I'm trying to add an id to the <body>
tag in my drupal theme. Currently I am doing it in the following manner:
PHP
function myTheme_preprocess_html(&$variables) {
$variables['bodyId'] = $variables['is_front'] ? 'id="page-AnaSayfa"' : 'id="page"';
}
HTML:
<body class="<?php print $classes;?>" <?php print $attributes;?> <?php print $bodyId;?>>
I am wondering is there a way to do it using the $attributes
variable? So far what I have tried with it didn't work which led me to use the $bodyId
I have now.
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想通了。
将其从 : 更改
为:
I figured it out.
Change it from :
To: