我正在使用
<?php echo theme('image', array('path' => drupal_get_path('theme', 'themename') .'/img/demo.png')); ?>
将图像硬编码到我的Drupal 7主题中。我的问题是如何添加“id”,“class”或“alt”等属性?
答案 0 :(得分:1)
要添加额外的属性,您需要使用必要的attributes
对传递数组key => value
。与alt
属性相同。
例如:
print theme('image', array(
'path' => drupal_get_path('theme', 'themename') . '/img/demo.png',
'alt' => 'my alt content',
'attributes' => array(
'id' => 'myId',
'class' => 'myClass',
))
);