node.tpl.php 中 <span class="submitted"><?php print $submitted; ?></span>
sites/all/themes/mygarland/myminnelli/template.php 中
function myminnelli_node_submitted($node) {
return t('Submitted by !username on @datetime',
array(
'!username' => theme('username', $node),
'@datetime' => format_date($node->created,'custom','Y-m-d H:i:s'),
));
}
见模块 node.module中注册了这个主题函数