Lösung gefunden im englischsprachigen Support Log. >hier<
Die nachstehenden Zeilen in der wp-includes/functions.php auskommentieren und alles läuft perfekt.
Code
/ Sanity check for PHP 5.1.0-
if ( false === $i || intval($i) < 0 ) {
if ( ! $gmt )
$i = current_time( 'timestamp' );
else
$i = time();
// we should not let date() interfere with our
// specially computed timestamp
$gmt = true;
}
Alle Datumsangaben vor 1970 werden nun korrekt dargestellt.
Danke trotzdem für Eure schnellen Antworten.