First of all: I really love Baskerville!
But this date format problem is a little drop of bitterness. Responsible for this deficiency ist since Version 1.16 the function baskerville_meta()
in the functions.php.
In my opinion there would be two possible solutions:
- Making the call of
the_time( 'Y/m/d' );
translatable. Unfortunately that seems to be not so easy …
- Declare the function
baskerville_meta()
in the functions.php conditionally:
if ( ! function_exists( 'baskerville_meta' ) ) {
function baskerville_meta() {
[…]
}
}
Then you can overwirite this function in a child theme and define your own date format for the post meta.
This would be great to have in Version 1.20!!!