how to change comment display date formate in admin?
-
i am use this action:
add_filter( ‘comment_date’, array( $this, ‘tnCommentsColumns’ ) );
public function tnCommentsColumns( $date )
{
$date = date( ‘Y-m-d H:i’ );return $date;
}but it error,and it display two repeat date.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘how to change comment display date formate in admin?’ is closed to new replies.