de hecho si es por i18n
Tienes que modificar una linea parecida a esto
<?php echo date_i18n(get_option(‘date_format’), strtotime(get_the_date())); ?>
por esto
<?php the_time(‘F jS, Y’) ?>
Busca una linea parecida a esta
<?php echo date_i18n(get_option(‘date_format’), strtotime(get_the_date())); ?>
Específicamente busca una linea que tenga date_i18n
y lo modificas por
<?php the_time(‘F jS, Y’) ?>
Saludos