Drupal 7:为图像字段链接添加rel属性

时间:2013-12-11 15:05:49

标签: drupal drupal-7

如何在图片字段的链接中添加rel属性?我不确定是否有可以使用的tpl.php,或者我可以在template.php中放置哪些内容。我已尝试过此页面中的代码,但我不确定将rel属性放在哪里:(

https://api.drupal.org/api/drupal/modules!image!image.field.inc/function/theme_image_formatter/7

1 个答案:

答案 0 :(得分:0)

您可以使用图片的preprocess挂钩在HTML <img>标记上添加属性。

以下是在主题的template.php中实现它的示例:

function YOURTHEME_preprocess_image(&$variables)
{
    $variables['attributes'] = array(
        'rel' => 'the-rel-value',
    );
}