Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created June 12, 2015 10:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/8e95b0c67f670950a1dc to your computer and use it in GitHub Desktop.
Save braddalton/8e95b0c67f670950a1dc to your computer and use it in GitHub Desktop.
Genesis post modified time and post modified date short code http://wpsites.net/wordpress-admin/last-modified-date-shortcode-for-genesis-post-info/
add_filter( 'genesis_post_info', 'modify_post_info_filter' );
function modify_post_info_filter($post_info) {
$post_info = '[post_modified_date] [post_modified_time]';
return $post_info;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment