回答:
field.tpl.php
またはを使用してフィールドにテーマを設定してみてくださいtheme_field()
。
例として(を使用field.tpl.php
):
field.tpl.php
"modules / field / theme"からテーマディレクトリにコピーしますfield--field-channel.tpl.php
これが機能する簡単な例として、次のfield--field-channel.tpl.php
ようになります。
<div class="<?php print $classes; ?> clearfix"<?php print $attributes; ?>>
<?php if (!$label_hidden) : ?>
<div class="field-label"<?php print $title_attributes; ?>><?php print $label ?>: </div>
<?php endif; ?>
<div class="field-items"<?php print $content_attributes; ?>>
<?php foreach ($items as $delta => $item) : ?>
<div style="display:inline;" class="field-item <?php print $delta % 2 ? 'odd' : 'even'; ?>"<?php print $item_attributes[$delta]; ?>>
<?php
print render($item);
// Add comma if not last item
if ($delta < (count($items) - 1)) {
print ',';
}
?>
</div>
<?php endforeach; ?>
</div>
</div>
.tplファイルを使用してこれを実現するには、おそらく複数の方法がありますが、これは1つのオプションにすぎません。インラインスタイルを使用する代わりに、スタイルではなくクラスをDIVに追加して、スタイルシートに変更を加えることをお勧めします。
フォーマッタテキストモジュールは、Drupalの7のために利用可能になりました、そしてカスタムテーマ作業をせずにこれを行うことができます。
これは、theme_field
アプローチを使用する1つの方法です(template.php
ファイルに追加します)。
/**
* Implements theme_field()
*
* Make field items a comma separated unordered list
*/
function THEMENAME_field__NAME_OF_FIELD__NAME_OF_CONTENT_TYPE($variables) {
$output = '';
// Render the label, if it's not hidden.
if (!$variables['label_hidden']) {
$output .= '<div class="field-label"' . $variables['title_attributes'] . '>' . $variables['label'] . ': </div>';
}
// Render the items as a comma separated inline list
$output .= '<ul class="field-items"' . $variables['content_attributes'] . '>';
for ($i=0; $i < count($variables['items']); $i++) {
$output .= '<li>'. drupal_render($variables['items'][$i]);
$output .= ($i == count($variables['items'])-1) ? '</li>' : ', </li>';
}
$output .= '</ul>';
return $output;
}
CSSでこれを簡単に行うことができます:
.field-type-taxonomy-term-reference .field-items .field-item { 表示:インラインブロック; * display:インライン; *ズーム:1; } .field-type-taxonomy-term-reference .field-items .field-item:after { 内容:「、」; } .field-type-taxonomy-term-reference .field-items .field-item:last-child:after { 内容: ""; }
content: ", \00a0"
:stackoverflow.com/a/5467676/724176
<?php
if ($node->taxonomy) {
foreach($node->taxonomy as $term) {
if ($term->vid == 3) { // the id of the vocabulary
$my_terms[] = l(
t($term->name),
'taxonomy/term/' . $term->tid
);
}
}
}
if ($my_terms) { ?>
<div class="clear-block">
<div class="terms">
<?php print implode(", ", $my_terms); ?>
</div>
</div>
<?php } ?>
区切り文字とラッパーの方が簡単な場合は、Taxonomy Formatterモジュールを使用します。http: //drupal.org/project/taxonomy_formatter
プロジェクトページの詳細:
これは、分類項目のカスタムフォーマッターを提供するために書かれた小さなモジュールです。デフォルトのフォーマッタはどちらも、divでラップされた用語を出力します。このモジュールは、要素タイプ、ラッパータイプ、両方のクラス、使用するセパレーター、および用語ページにリンクするかどうかを指定できる新しいフォーマッターを追加します。これにより、さらにカスタマイズ可能なレイアウトオプションが提供されます。