How can I change the date format of the revision list?
The date format looks like this $ datef = _x ('F j, Y @ H: i: s', 'revision date format');
but I want it to be like this $ datef = _x ('Y-m-d @ H: i: s', 'revision date format');
. I don't want to modify the core of wordpress, is there a way to do it with a hook?
This is in wp/wp-includes/post-template.php
, the function is called wp_post_revision_title_expanded
.