Skip to content

Instantly share code, notes, and snippets.

@reasonstousegenesis
Created May 10, 2015 15:45
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 reasonstousegenesis/9abb049190b0a619bbba to your computer and use it in GitHub Desktop.
Save reasonstousegenesis/9abb049190b0a619bbba to your computer and use it in GitHub Desktop.
Edit the entry meta before content
<?php
// Paste the code BELOW this line into your child theme functions.
/**
* Edit the entry meta before content
*
* @author Reasons to Use Genesis
* @link http://reasonstousegenesis.com/genesis-post-info/
*/
add_filter( 'genesis_post_info', 'rtug_post_info' );
function rtug_post_info() {
return 'Last updated [post_modified_date]';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment