Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save BruceMcKinnon/2d2fa922d81a78f1d35b3405684220f5 to your computer and use it in GitHub Desktop.
Save BruceMcKinnon/2d2fa922d81a78f1d35b3405684220f5 to your computer and use it in GitHub Desktop.
Override the WP post entry meta in FoundationPress
// Hook the post entry meta
function foundationpress_entry_meta() {
echo '<time class="updated" datetime="' . get_the_time( 'c' ) . '">' . sprintf( __( '%s', 'foundationpress' ), get_the_date() ) . '</time>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment