Skip to content

Instantly share code, notes, and snippets.

@tdmrhn
Last active February 21, 2022 18:33
Show Gist options
  • Save tdmrhn/e8546e71f4ea6645f131580c50338072 to your computer and use it in GitHub Desktop.
Save tdmrhn/e8546e71f4ea6645f131580c50338072 to your computer and use it in GitHub Desktop.
Blocksy Comment Date Time Format
<?php
add_filter( 'get_comment_date', function ( $d ) {
$d = date_i18n(get_option( 'date_format' ));
return $d;
} );
add_filter( 'get_comment_time', function ( $h ) {
$h = date_i18n(get_option( 'time_format' ));
return $h;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment