如何在块中打印节点提交时间。
类似...... print $node->submitted_time
?
答案 0 :(得分:3)
$node->created
正是您要找的。 p>
答案 1 :(得分:1)
添加块 - >选择php过滤器,添加代码:
if ((arg(0) == 'node') && is_numeric(arg(1)) ) {
$node = node_load(arg(1));
if ($node) {
print format_date($node->created);
}
}