0
當前我使用this answer中建議的代碼。這是以下幾點:將類添加到Drupal 7中特定內容類型的圖像字段中
function simalr_preprocess_image(&$variables) {
if ($variables['style_name'] == 'request-background') {
$variables['attributes']['class'][] = 'pixastic';
$variables['attributes']['class'][] = 'pixastic-blurfast(amount=1)';
}
}
這工作得很好,除了事實上,我得到它不以「請求後臺」風格的圖片頁面上出現以下錯誤信息:
注意:simalr_preprocess_image()中的未定義索引:style_name(/var/www/vhosts/simalr.com/httpdocs/sites/all/themes/simalr/template.php第46行)。
我只想在特定內容類型(即'請求')上使用這段代碼。在哪種方式下,我必須調整我的template.php文件中的代碼,以便在只有特定內容類型的頁面上使用它?
謝謝,但我已經試過這個,但我仍然收到錯誤。你可能會重寫我的代碼給我一個更好的例子嗎? – rroose 2012-07-11 17:43:05