如何在图片字段的链接中添加rel
属性?我不确定是否有可以使用的tpl.php,或者我可以在template.php中放置哪些内容。我已尝试过此页面中的代码,但我不确定将rel
属性放在哪里:(
https://api.drupal.org/api/drupal/modules!image!image.field.inc/function/theme_image_formatter/7
答案 0 :(得分:0)
您可以使用图片的preprocess
挂钩在HTML <img>
标记上添加属性。
以下是在主题的template.php
中实现它的示例:
function YOURTHEME_preprocess_image(&$variables)
{
$variables['attributes'] = array(
'rel' => 'the-rel-value',
);
}