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.
ノードタイプを tpl に出力しようとしていますが、使用しているコードをあまり見ていません: type != 'commissions'): ?>
何か案は?
乾杯
tpl ファイルにはノード オブジェクト全体があります。
$node->type;
Try this $node= node_load($nid); // $nid = your node ID $type=$node->type; then check ($type!='commissions')