Skip to content

Instantly share code, notes, and snippets.

@frankyonnetti
Last active February 17, 2021 03:42
Show Gist options
  • Select an option

  • Save frankyonnetti/5944761 to your computer and use it in GitHub Desktop.

Select an option

Save frankyonnetti/5944761 to your computer and use it in GitHub Desktop.
Drupal 7 - display last modification date #drupal #d7
<?php // http://drupal.org/node/43512
print date('j F Y - g:ia', $node->changed);
?>
<?php // if checked in content-type edit
if ($submitted) {
echo 'This page was last modified on ' . date( "F j, Y",$node->changed);
};
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment