I´m using this Script in Atahualpa 3.5.3 "Edit Post/Page Info Items" (FOOTER: Homepage, FOOTER: Multi Post Pages, FOOTER: Single Post Pages, FOOTER: "Page" Pages) to modify the Footer of Single Post Pages and it works fine.
PHP Code:
<?php if(strtotime($post->post_modified) - strtotime($post->post_date) > 86400)
{
echo “Aktualisiert am: ” ;
the_modified_date(’j. F Y’);
echo ” um ” ;
the_modified_time(’G:i’);
}
else
{
echo “Erstellt am: ” ;
echo get_the_date();
echo ” um ” ;
echo get_the_time();
} ?> | Autor: %author-nickname% | %tags-linked(’Tags: ‘, ‘, ‘, ‘ | ‘)% Kategorie: %categories-linked(’, ‘)% %edit(’ | ‘, ‘Bearbeiten’, ”)%
NB