弄过drupal的,对blog中的submitted都不会太陌生吧,Submitted by admin on Tue, 04/12/2011 – 11:54这是其默认的一种风格,今天我们只要来看如何在drupal7中改写这种风格。
首先我们来看看在drupal6中的实现方法:
1、在相应的主题下,加上下面的代码
function yourthemename_node_submitted($node) {
return t('Posted by !username on @datetime', array(
'!username' => theme('username', $node),
'@datetime' => format_date($node->created, 'custom', 'd M Y')
));
}
2、然后在node.tpl.php文件中加入