0

我想修剪标题视野。

标题字段来自"teaser view mode"我想要它使用template_preprocess_node

我用了:

if ($vars['type'] == 'deals' && $vars['view_mode'] == 'teaser') {
    $vars['title'] = truncate_utf8($vars['title'], 30, TRUE, TRUE);
}

但它没有反映。

4

1 回答 1

0

一切对我来说都很好。

确保在您的template_preprocess_node定义中,您&$vars不只是$vars.

于 2013-08-27T07:43:11.870 回答