Skip to content

Instantly share code, notes, and snippets.

@jgalea
jgalea / genesis-byline.php
Created August 14, 2013 14:30
Use the last updated date rather than publish date on posts.
<?php
add_filter( 'genesis_post_info', 'custom_post_info' );
function custom_post_info( $post_info ) {
$u_time = get_the_time( 'U' );
$u_modified_time = get_the_modified_time( 'U' );
if ( $u_modified_time >= $u_time + 86400 ) {
$post_date = get_the_modified_time( 'F jS, Y' );
}