drupal echo node已更改,未显示上次修改日期

时间:2012-01-10 21:06:01

标签: php drupal

根据这篇文章:

Drupal Display Modified Date for Node

要使节点页面上显示的最后修改日期,您需要做的就是添加

<?php echo format_date($node->changed); ?>

到node.tpl.php文件

但它对我不起作用。

这是我的node.tpl.php文件。我已将代码放在每个可以想象的位置,但它从未出现过。

 <div id="node-<?php print $node->nid; ?>" class="<?php print $classes; ?>"<?php print $attributes; ?>>

  <?php print $user_picture; ?>

  <?php print render($title_prefix); ?>
  <?php if (!$page): ?>
    <h2<?php print $title_attributes; ?>><a href="<?php print $node_url; ?>"><?php print $title; ?></a></h2>
  <?php endif; ?>
  <?php print render($title_suffix); ?>

  <?php if ($display_submitted): ?>
    <span class="submitted"><?php print $submitted ?></span>
  <?php endif; ?>

  <div class="content clearfix"<?php print $content_attributes; ?>>
    <?php
      hide($content['comments']);
      hide($content['links']);
      print render($content);
    ?>
  </div>

  <div class="clearfix">
    <?php if (!empty($content['links'])): ?>
      <div class="links"><?php print render($content['links']); ?></div>
    <?php endif; ?>

    <?php print render($content['comments']); ?>
  </div>

</div>

0 个答案:

没有答案