Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Drupal 6 中,如果我想显示 RATE 模块,我可以使用代码(
<?php print $node->rate_rate['#value'];?>
在 Drupal 7 模板中显示它的代码是什么?
谢谢!
您可以选择不自动将小部件添加到节点模板。在这种情况下,小部件可以用作:
<?php print $node->rate_NAME['#markup']; ?>
将 NAME 替换为小部件的机器可读名称。