Skip to content

Instantly share code, notes, and snippets.

@cdils
Created February 23, 2015 18:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cdils/ab896ac40bcddc2e7893 to your computer and use it in GitHub Desktop.
Save cdils/ab896ac40bcddc2e7893 to your computer and use it in GitHub Desktop.
Add latest post revision date to Genesis post info.
<?php //remove this line
add_filter( 'genesis_post_info', 'cd_post_info_filter' );
function cd_post_info_filter( $post_info ) {
if ( ! is_singular( 'post' ) ) {
$post_info = '[post_date] by [post_author_posts_link] [post_comments]';
$post_modified_info = '[post_modified_date before="<br />Last updated "]';
return $post_info . $post_modified_info;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment