Archived topic
How do I change the comment date format?
3 replies · Started by Pete on August 2, 2019
Viewing posts 1–4 of 4
How do I change the comment date format?
Hi there,
the comment date respects the Settings > General > Date format.
Alternatively try this PHP snippet to change just the comment date:
add_filter( 'get_comment_date', 'db_reformat_comment_date' );
function db_reformat_comment_date'( $dateForm ) {
$dateForm = date("m.d.y");
return $dateForm;
}
Thanks
You're welcome
This archived topic is closed to new replies.