Skip to content

Instantly share code, notes, and snippets.

@roborourke
Created December 10, 2012 14:52
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 roborourke/4250992 to your computer and use it in GitHub Desktop.
Save roborourke/4250992 to your computer and use it in GitHub Desktop.
Turn off the date display hiding logic in WP if posts are on same day
<?php
/**
* Switch off is_new_day() date hiding logic
*/
add_action( 'the_post', function( $post ) {
global $previousday;
$previousday = 0;
} );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment