Place the following code in custom_functions.php:
function revision_date() {
if(get_the_modified_date() != get_the_date())
echo 'Revised on ' . get_the_modified_date();
}
add_action('thesis_hook_after_post','revision_date');
Applies to Version(s): Thesis 1
Place the following code in custom_functions.php:
function revision_date() {
if(get_the_modified_date() != get_the_date())
echo 'Revised on ' . get_the_modified_date();
}
add_action('thesis_hook_after_post','revision_date');