Add Revision Date After Post

This document is deprecated! The information on this page refers to a Thesis version that is now obsolete. Please visit the Thesis Docs for current documentation.

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');