Commit 8f16d716 authored by Jakob Moser's avatar Jakob Moser
Browse files

Display modified date on single.php

parent b8f2d7b2
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -9,7 +9,8 @@
 * archival purposes.
 * 
 * Posts have an announcement-like character, and announcements are nothing else then messages,
 * and for messages, we generally care about the author, so we display it. 
 * and for messages, we generally care about the author, so we display it. We also display
 * the publication date and the date of the last change.
 * 
 * WordPress identifies this file by its name (which MUST be single.php).
 *
@@ -35,7 +36,8 @@ get_header();
        </div>
        <footer>
            <div class="author"><?php the_author_meta('display_name'); ?></div>
            <div class="published date"><time><?php the_date(); ?></time></div>
            <div class="published date">Veröffentlicht: <time><?php the_date(); ?></time></div>
            <div class="modified date">Zuletzt geändert: <time><?php the_modified_date(); ?></time></div>
        </footer>
    </article>
</main>