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 7 站点中有一些自定义页面。我需要在每个页面中显示内容类型的名称。我应该使用什么函数来显示内容类型的名称?
您可以从主题中的 node.tpl.php 打印出内容类型。$node 对象被传递给 node.tpl.php 文件,你只需要回显出<?php echo $node->type; ?>你想要它显示的位置。
<?php echo $node->type; ?>