how to modify date format in wordpress list comments how to modify date format in wordpress list comments wordpress wordpress

how to modify date format in wordpress list comments


Use this filter man.

 add_filter( 'get_comment_date', 'wpse_comment_date_18350375' );     function wpse_comment_date_18350375( $date ) {   $date = date("m.d.y");      return $date; }