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.
有办法在 Drupal 的帖子中添加日期吗?例如这里,图像下有日期(静态日期,我把这个日期放在编辑器中),但也许有办法配置drupal自动添加这个日期?
将类似的内容添加到您的node-blog.tpl.php主题文件中。
node-blog.tpl.php
'<span class="date">'.format_date($node->created, 'custom', "d F Y").'</span>'