[Resolved] How do I change the comment date format?

Home Forums Support [Resolved] How do I change the comment date format?

Home Forums Support How do I change the comment date format?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #974497
    Pete

    How do I change the comment date format?

    #974696
    David
    Staff
    Customer Support

    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;
    }
    #979777
    Pete

    Thanks

    #979790
    David
    Staff
    Customer Support

    You’re welcome

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.