Bana kelime ile şartlarını yazdırmak bulunuyor izin template.php bir değişken oluşturduk. Sorun, belirli bir kelime seçmek için bir kelime id geçmek mümkün olmak istiyorum olmasıdır. Benim kod şöyle görünür:
function xnalaraart_classic_print_terms($node, $vocabularies){
foreach($vocabularies as $vocabulary){
if($terms = taxonomy_node_get_terms_by_vocabulary($node, $vocabulary->vid)){
$output .= '<div>';
$output .= '<ul class="links inline">';
foreach ($terms as $term){
$output .= '<li class="taxonomy_term_' . $term->tid . '">';
$output .= l($term->name, taxonomy_term_path($term), array('rel' => 'tag', 'title' => strip_tags($term->description)));
$output .= '</li>';
}
$output .= '</ul>';
$output .= '</div>';
}
}
return $output;
}
ve preprocess_node işlevinde:
$vars['terms_split'] = xnalaraart_classic_print_terms($vars['node']);
Ben $ sözlüklere bir id geçmek böylece nasıl ben yazabilirim?