0

我正在尝试在 tpl 中打印节点类型,但看不到我使用的代码是:type != 'commissions'): ?>

有任何想法吗?

干杯

4

2 回答 2

1

tpl 文件中有一个完整的节点对象。也许你可以:

$node->type;
于 2012-06-04T12:25:46.773 回答
0

Try this $node= node_load($nid); // $nid = your node ID $type=$node->type; then check ($type!='commissions')

于 2012-06-05T09:24:16.097 回答