gunwinner は私のテーマ名で、特定のコンテンツ タイプのフィールドを変更したいと考えています。私はこのコードを試しました、
function gunwinner_preprocess_field(&$variables) {
$element = $variables['element'];
if($element['#field_name'] == 'field_deal_url') {
$values = $element['#items'][0]['value'];
$deal_link = l(t("Go to Store"), "$values", array('attributes' => array('class' => 'store-link')));
$element['#items'][0]['value'] = "Store";
return;
}
}
リンクタイトルが「Go to Store」の配列を返しますが、特定のフィールドのページには反映されません。
誰でもこれを手伝ってもらえますか?