Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @minlee92 !
    You can do it from adding code to functions.php of your parent/child theme

    // Add comment date
    function wpb_remove_comment_date($date, $d, $comment) { 
    return $date;
    }
    add_filter( 'get_comment_date', 'wpb_remove_comment_date', 10, 3);
    // Add comment time
    function wpb_remove_comment_time($date, $d, $comment) {  
                return $date;
        }
    add_filter( 'get_comment_time', 'wpb_remove_comment_time', 10, 3);
    Thread Starter minlee92

    (@minlee92)

    Thanks for your reply but this code not working.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Comments in WordPress Editor not show date time’ is closed to new replies.